bitwriter: fix g-i scanner warning
authorTim-Philipp Müller <tim@centricular.com>
Sun, 12 Aug 2018 19:07:02 +0000 (20:07 +0100)
committerTim-Philipp Müller <tim@centricular.com>
Sun, 12 Aug 2018 19:07:02 +0000 (20:07 +0100)
gstbitwriter.h:45: Warning: GstBase: "@bit_capacity" parameter unexpected at this location:
 * @bit_capacity: Capacity of the allocated @data

libs/gst/base/gstbitwriter.h

index e647e94..c2b4a70 100644 (file)
@@ -41,12 +41,6 @@ typedef struct _GstBitWriter GstBitWriter;
  * @data: Allocated @data for bit writer to write
  * @bit_size: Size of written @data in bits
  *
- * Private:
- * @bit_capacity: Capacity of the allocated @data
- * @auto_grow: @data space can auto grow
- * @destroy_data: The #GDestroyNotify function called with #data when the memory
- *                is freed
- *
  * A bit writer instance.
  */
 struct _GstBitWriter
@@ -55,8 +49,8 @@ struct _GstBitWriter
   guint bit_size;
 
   /*< private >*/
-  guint bit_capacity;
-  gboolean auto_grow;
+  guint bit_capacity; /* Capacity of the allocated data */
+  gboolean auto_grow; /* Whether space can auto grow */
   gboolean owned;
   gpointer _gst_reserved[GST_PADDING];
 };