Interface

GstVideo-1.0GstVideoColorBalanceInterface

Interface for implementing ColorBalance. Contains only the virtual methods that need to be implemented.

interface Interface {
    vfunc_get_balance_type(): GstVideo.ColorBalanceType;
    vfunc_get_value(channel: GstVideo.ColorBalanceChannel): number;
    vfunc_list_channels(): GstVideo.ColorBalanceChannel[];
    vfunc_set_value(channel: GstVideo.ColorBalanceChannel, value: number): void;
    vfunc_value_changed(
        channel: GstVideo.ColorBalanceChannel,
        value: number,
    ): void;
}

Hierarchy (View Summary)

Index

Methods

  • A helper function called by implementations of the GstColorBalance interface. It fires the GstVideo.ColorBalance.SignalSignatures.value_changed | GstVideo.ColorBalance::value-changed signal on the instance, and the GstVideo.ColorBalanceChannel.SignalSignatures.value_changed | GstVideo.ColorBalanceChannel::value-changed signal on the channel object.

    Parameters

    Returns void