Top |
GstColorBalanceChannelGstColorBalanceChannel — Object representing a channel from the GstColorBalance interface. |
The GstColorBalanceChannel object represents a parameter for modifying the color balance implemented by an element providing the GstColorBalance interface. For example, Hue or Saturation.
struct GstColorBalanceChannel { gchar *label; gint min_value; gint max_value; };
struct GstColorBalanceChannelClass { GObjectClass parent; /* signals */ void (* value_changed) (GstColorBalanceChannel *channel, gint value); };
Color-balance channel class.
“value-changed”
signalvoid user_function (GstColorBalanceChannel *channel, gint value, gpointer user_data)
Fired when the value of the indicated channel has changed.
channel |
||
value |
The new value |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run Last