1 /* GStreamer Color Balance
2 * Copyright (C) 2003 Ronald Bultje <rbultje@ronald.bitfreak.net>
4 * color-balance.h: image color balance interface design
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
16 * You should have received a copy of the GNU Library General Public
17 * License along with this library; if not, write to the
18 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19 * Boston, MA 02110-1301, USA.
22 #ifndef __GST_COLOR_BALANCE_H__
23 #define __GST_COLOR_BALANCE_H__
26 #include <gst/video/colorbalancechannel.h>
30 #define GST_TYPE_COLOR_BALANCE \
31 (gst_color_balance_get_type ())
32 #define GST_COLOR_BALANCE(obj) \
33 (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_COLOR_BALANCE, GstColorBalance))
34 #define GST_IS_COLOR_BALANCE(obj) \
35 (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_COLOR_BALANCE))
36 #define GST_COLOR_BALANCE_GET_INTERFACE(inst) \
37 (G_TYPE_INSTANCE_GET_INTERFACE ((inst), GST_TYPE_COLOR_BALANCE, GstColorBalanceInterface))
39 typedef struct _GstColorBalance GstColorBalance;
40 typedef struct _GstColorBalanceInterface GstColorBalanceInterface;
43 * GstColorBalanceType:
44 * @GST_COLOR_BALANCE_HARDWARE: Color balance is implemented with dedicated
46 * @GST_COLOR_BALANCE_SOFTWARE: Color balance is implemented via software
49 * An enumeration indicating whether an element implements color balancing
50 * operations in software or in dedicated hardware. In general, dedicated
51 * hardware implementations (such as those provided by xvimagesink) are
56 GST_COLOR_BALANCE_HARDWARE,
57 GST_COLOR_BALANCE_SOFTWARE
58 } GstColorBalanceType;
61 * GstColorBalanceInterface:
62 * @iface: the parent interface
63 * @get_balance_type: implementation type
64 * @list_channels: list handled channels
65 * @set_value: set a channel value
66 * @get_value: get a channel value
67 * @value_changed: default handler for value changed notification
69 * Color-balance interface.
71 struct _GstColorBalanceInterface {
74 /* virtual functions */
75 const GList * (* list_channels) (GstColorBalance *balance);
77 void (* set_value) (GstColorBalance *balance,
78 GstColorBalanceChannel *channel,
80 gint (* get_value) (GstColorBalance *balance,
81 GstColorBalanceChannel *channel);
82 GstColorBalanceType (*get_balance_type) (GstColorBalance *balance);
85 void (* value_changed) (GstColorBalance *balance,
86 GstColorBalanceChannel *channel,
90 gpointer _gst_reserved[GST_PADDING];
94 GType gst_color_balance_get_type (void);
96 /* virtual class function wrappers */
100 gst_color_balance_list_channels (GstColorBalance *balance);
103 void gst_color_balance_set_value (GstColorBalance *balance,
104 GstColorBalanceChannel *channel,
108 gint gst_color_balance_get_value (GstColorBalance *balance,
109 GstColorBalanceChannel *channel);
113 gst_color_balance_get_balance_type (GstColorBalance *balance);
118 void gst_color_balance_value_changed (GstColorBalance *balance,
119 GstColorBalanceChannel *channel,
124 #endif /* __GST_COLOR_BALANCE_H__ */