Example #1
0
        public int GetValue(Gst.Interfaces.ColorBalanceChannel channel)
        {
            int raw_ret = gst_color_balance_get_value(Handle, channel == null ? IntPtr.Zero : channel.Handle);
            int ret     = raw_ret;

            return(ret);
        }
Example #2
0
 public void EmitValueChanged(Gst.Interfaces.ColorBalanceChannel channel, int value)
 {
     gst_color_balance_value_changed(Handle, channel == null ? IntPtr.Zero : channel.Handle, value);
 }
Example #3
0
 public void SetValue(Gst.Interfaces.ColorBalanceChannel channel, int value)
 {
     gst_color_balance_set_value(Handle, channel == null ? IntPtr.Zero : channel.Handle, value);
 }