gst: minor docstring fixups to make g-i happy
authorEdward Hervey <edward@collabora.com>
Wed, 7 Aug 2013 16:20:03 +0000 (18:20 +0200)
committerEdward Hervey <edward@collabora.com>
Wed, 14 Aug 2013 05:05:04 +0000 (07:05 +0200)
note: the #ifndef move is actually a move of the "SECTION" docstring

gst/gstcompat.h
gst/gstinfo.c
gst/gstinfo.h

index 3f4a682..67f5168 100644 (file)
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+
+/* API compatibility stuff */
+#ifndef __GSTCOMPAT_H__
+#define __GSTCOMPAT_H__
 /**
  * SECTION:gstcompat
  * @short_description: Deprecated API entries
@@ -28,9 +32,6 @@
  * This can be done in CFLAGS for compiling old code.
  */
 
-/* API compatibility stuff */
-#ifndef __GSTCOMPAT_H__
-#define __GSTCOMPAT_H__
 
 G_BEGIN_DECLS
 
index 4419817..ea2876d 100644 (file)
@@ -1293,13 +1293,13 @@ gst_debug_set_color_mode (GstDebugColorMode mode)
  * Since: 1.2
  */
 void
-gst_debug_set_color_mode_from_string (const gchar * str)
+gst_debug_set_color_mode_from_string (const gchar * mode)
 {
-  if ((strcmp (str, "on") == 0) || (strcmp (str, "auto") == 0))
+  if ((strcmp (mode, "on") == 0) || (strcmp (mode, "auto") == 0))
     gst_debug_set_color_mode (GST_DEBUG_COLOR_MODE_ON);
-  else if ((strcmp (str, "off") == 0) || (strcmp (str, "disable") == 0))
+  else if ((strcmp (mode, "off") == 0) || (strcmp (mode, "disable") == 0))
     gst_debug_set_color_mode (GST_DEBUG_COLOR_MODE_OFF);
-  else if (strcmp (str, "unix") == 0)
+  else if (strcmp (mode, "unix") == 0)
     gst_debug_set_color_mode (GST_DEBUG_COLOR_MODE_UNIX);
 }
 
index 46a81f0..4f9baa6 100644 (file)
@@ -354,7 +354,7 @@ gboolean        gst_debug_is_active   (void);
 
 void            gst_debug_set_colored (gboolean colored);
 void            gst_debug_set_color_mode   (GstDebugColorMode mode);
-void            gst_debug_set_color_mode_from_string (const gchar * str);
+void            gst_debug_set_color_mode_from_string (const gchar * mode);
 gboolean        gst_debug_is_colored  (void);
 GstDebugColorMode gst_debug_get_color_mode (void);