expand tabs
[platform/upstream/gstreamer.git] / gst-libs / gst / interfaces / colorbalance.h
index 5b9271e..970cc59 100644 (file)
@@ -32,10 +32,10 @@ G_BEGIN_DECLS
   (gst_color_balance_get_type ())
 #define GST_COLOR_BALANCE(obj) \
   (GST_IMPLEMENTS_INTERFACE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_COLOR_BALANCE, \
-                                                GstColorBalance))
+                                                 GstColorBalance))
 #define GST_COLOR_BALANCE_CLASS(klass) \
   (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_COLOR_BALANCE, \
-                           GstColorBalanceClass))
+                            GstColorBalanceClass))
 #define GST_IS_COLOR_BALANCE(obj) \
   (GST_IMPLEMENTS_INTERFACE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_COLOR_BALANCE))
 #define GST_IS_COLOR_BALANCE_CLASS(klass) \
@@ -62,34 +62,34 @@ typedef struct _GstColorBalanceClass {
   const GList * (* list_channels) (GstColorBalance        *balance);
 
   void          (* set_value)     (GstColorBalance        *balance,
-                                  GstColorBalanceChannel *channel,
-                                  gint                    value);
+                                   GstColorBalanceChannel *channel,
+                                   gint                    value);
   gint          (* get_value)     (GstColorBalance        *balance,
-                                  GstColorBalanceChannel *channel);
+                                   GstColorBalanceChannel *channel);
 
   /* signals */
   void (* value_changed) (GstColorBalance        *balance,
-                         GstColorBalanceChannel *channel,
-                         gint                    value);
+                          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);
+        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