summaryrefslogtreecommitdiffstats
path: root/gst-libs/gst/colorbalance
diff options
context:
space:
mode:
Diffstat (limited to 'gst-libs/gst/colorbalance')
-rw-r--r--gst-libs/gst/colorbalance/colorbalance.h46
-rw-r--r--gst-libs/gst/colorbalance/colorbalancechannel.h19
2 files changed, 38 insertions, 27 deletions
diff --git a/gst-libs/gst/colorbalance/colorbalance.h b/gst-libs/gst/colorbalance/colorbalance.h
index d0347579..d7b92171 100644
--- a/gst-libs/gst/colorbalance/colorbalance.h
+++ b/gst-libs/gst/colorbalance/colorbalance.h
@@ -27,6 +27,7 @@
#include <gst/colorbalance/colorbalance-enumtypes.h>
G_BEGIN_DECLS
+
#define GST_TYPE_COLOR_BALANCE \
(gst_color_balance_get_type ())
#define GST_COLOR_BALANCE(obj) \
@@ -41,48 +42,55 @@ G_BEGIN_DECLS
(G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_COLOR_BALANCE))
#define GST_COLOR_BALANCE_GET_CLASS(inst) \
(G_TYPE_INSTANCE_GET_INTERFACE ((inst), GST_TYPE_COLOR_BALANCE, GstColorBalanceClass))
+
#define GST_COLOR_BALANCE_TYPE(klass) (klass->balance_type)
-typedef struct _GstColorBalance GstColorBalance;
+typedef struct _GstColorBalance GstColorBalance;
+
typedef enum
{
GST_COLOR_BALANCE_HARDWARE,
GST_COLOR_BALANCE_SOFTWARE
} GstColorBalanceType;
-typedef struct _GstColorBalanceClass
-{
+typedef struct _GstColorBalanceClass {
GTypeInterface klass;
GstColorBalanceType balance_type;
-
+
/* virtual functions */
- const GList *(*list_channels) (GstColorBalance * balance);
+ const GList * (* list_channels) (GstColorBalance *balance);
- void (*set_value) (GstColorBalance * balance,
- GstColorBalanceChannel * channel, gint value);
- gint (*get_value) (GstColorBalance * balance,
- GstColorBalanceChannel * channel);
+ void (* set_value) (GstColorBalance *balance,
+ GstColorBalanceChannel *channel,
+ gint value);
+ gint (* get_value) (GstColorBalance *balance,
+ GstColorBalanceChannel *channel);
/* signals */
- void (*value_changed) (GstColorBalance * balance,
- GstColorBalanceChannel * channel, gint value);
+ void (* value_changed) (GstColorBalance *balance,
+ GstColorBalanceChannel *channel,
+ gint value);
gpointer _gst_reserved[GST_PADDING];
} GstColorBalanceClass;
-GType gst_color_balance_get_type (void);
+GType gst_color_balance_get_type (void);
/* virtual class function wrappers */
-const GList *gst_color_balance_list_channels (GstColorBalance * balance);
-void gst_color_balance_set_value (GstColorBalance * balance,
- GstColorBalanceChannel * channel, gint value);
-gint gst_color_balance_get_value (GstColorBalance * balance,
- GstColorBalanceChannel * channel);
+const GList *
+ gst_color_balance_list_channels (GstColorBalance *balance);
+void gst_color_balance_set_value (GstColorBalance *balance,
+ GstColorBalanceChannel *channel,
+ gint value);
+gint gst_color_balance_get_value (GstColorBalance *balance,
+ GstColorBalanceChannel *channel);
/* trigger signal */
-void gst_color_balance_value_changed (GstColorBalance * balance,
- GstColorBalanceChannel * channel, gint value);
+void gst_color_balance_value_changed (GstColorBalance *balance,
+ GstColorBalanceChannel *channel,
+ gint value);
G_END_DECLS
+
#endif /* __GST_COLOR_BALANCE_H__ */
diff --git a/gst-libs/gst/colorbalance/colorbalancechannel.h b/gst-libs/gst/colorbalance/colorbalancechannel.h
index 516fb72a..23f73f8e 100644
--- a/gst-libs/gst/colorbalance/colorbalancechannel.h
+++ b/gst-libs/gst/colorbalance/colorbalancechannel.h
@@ -25,6 +25,7 @@
#include <gst/gst.h>
G_BEGIN_DECLS
+
#define GST_TYPE_COLOR_BALANCE_CHANNEL \
(gst_color_balance_channel_get_type ())
#define GST_COLOR_BALANCE_CHANNEL(obj) \
@@ -37,25 +38,27 @@ G_BEGIN_DECLS
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_COLOR_BALANCE_CHANNEL))
#define GST_IS_COLOR_BALANCE_CHANNEL_CLASS(klass) \
(G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_COLOR_BALANCE_CHANNEL))
- typedef struct _GstColorBalanceChannel
-{
+
+typedef struct _GstColorBalanceChannel {
GObject parent;
- gchar *label;
- gint min_value, max_value;
+ gchar *label;
+ gint min_value,
+ max_value;
} GstColorBalanceChannel;
-typedef struct _GstColorBalanceChannelClass
-{
+typedef struct _GstColorBalanceChannelClass {
GObjectClass parent;
/* signals */
- void (*value_changed) (GstColorBalanceChannel * channel, gint value);
+ void (* value_changed) (GstColorBalanceChannel *channel,
+ gint value);
gpointer _gst_reserved[GST_PADDING];
} GstColorBalanceChannelClass;
-GType gst_color_balance_channel_get_type (void);
+GType gst_color_balance_channel_get_type (void);
G_END_DECLS
+
#endif /* __GST_COLOR_BALANCE_CHANNEL_H__ */