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