gst_plugins_base/gst-libs/gst/interfaces/colorbalancechannel.h
branchRCL_3
changeset 30 7e817e7e631c
parent 29 567bb019e3e3
--- a/gst_plugins_base/gst-libs/gst/interfaces/colorbalancechannel.h	Tue Aug 31 15:30:33 2010 +0300
+++ b/gst_plugins_base/gst-libs/gst/interfaces/colorbalancechannel.h	Wed Sep 01 12:16:41 2010 +0100
@@ -39,26 +39,15 @@
 #define GST_IS_COLOR_BALANCE_CHANNEL_CLASS(klass) \
   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_COLOR_BALANCE_CHANNEL))
 
-typedef struct _GstColorBalanceChannel GstColorBalanceChannel;
-typedef struct _GstColorBalanceChannelClass GstColorBalanceChannelClass;
-
-/**
- * GstColorBalanceChannel:
- * @label: A string containing a descriptive name for this channel
- * @min_value: The minimum valid value for this channel.
- * @max_value: The maximum valid value for this channel.
- */
-struct _GstColorBalanceChannel {
+typedef struct _GstColorBalanceChannel {
   GObject parent;
 
-  /*< public >*/
   gchar  *label;
-  gint    min_value;
-  gint    max_value;
-};
+  gint    min_value,
+          max_value;
+} GstColorBalanceChannel;
 
-
-struct _GstColorBalanceChannelClass {
+typedef struct _GstColorBalanceChannelClass {
   GObjectClass parent;
 
   /* signals */
@@ -66,7 +55,7 @@
                           gint                    value);
 
   gpointer _gst_reserved[GST_PADDING];
-};
+} GstColorBalanceChannelClass;
 #ifdef __SYMBIAN32__
 IMPORT_C
 #endif