| GStreamer Base Plugins 0.10 Library Reference Manual | ||||
|---|---|---|---|---|
gstcolorbalancechannelgstcolorbalancechannel — Object representing a channel from the GstColorBalance interface. |
#include <gst/interfaces/colorbalancechannel.h>
GstColorBalanceChannel;
GstColorBalanceChannelClass;
The GstColorBalanceChannel object represents a parameter for modifying the color balance implemented by an element providing the GstColorBalance interface. For example, Hue or Saturation.
typedef struct {
gchar *label;
gint min_value;
gint max_value;
} GstColorBalanceChannel;
gchar *label; |
A string containing a descriptive name for this channel |
gint min_value; |
The minimum valid value for this channel. |
gint max_value; |
The maximum valid value for this channel. |
"value-changed" signalvoid user_function (GstColorBalanceChannel *channel, gint value, gpointer user_data) : Run Last
Fired when the value of the indicated channel has changed.
channel : |
The GstColorBalanceChannel |
value : |
The new value |
user_data : |
user data set when the signal handler was connected. |