summaryrefslogtreecommitdiffstats
path: root/gst-libs/gst/colorbalance/colorbalancechannel.h
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2004-03-15 16:32:54 +0000
committerJohan Dahlin <johan@gnome.org>2004-03-15 16:32:54 +0000
commit39fd8a2dbd436cbabe5e336d1145b62c2a885ed5 (patch)
tree61df7da4a9d2b8bdb853af50a27219a8921bf5e4 /gst-libs/gst/colorbalance/colorbalancechannel.h
parent1633bd8693c54cbc5f6648703a7ecf01548ec55f (diff)
downloadgst-plugins-bad-39fd8a2dbd436cbabe5e336d1145b62c2a885ed5.tar.gz
gst-plugins-bad-39fd8a2dbd436cbabe5e336d1145b62c2a885ed5.tar.bz2
gst-plugins-bad-39fd8a2dbd436cbabe5e336d1145b62c2a885ed5.zip
*.h: Revert indenting
Original commit message from CVS: * *.h: Revert indenting
Diffstat (limited to 'gst-libs/gst/colorbalance/colorbalancechannel.h')
-rw-r--r--gst-libs/gst/colorbalance/colorbalancechannel.h19
1 files changed, 11 insertions, 8 deletions
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__ */