audio: Fix introspection annotation
authorThibault Saunier <tsaunier@gnome.org>
Thu, 15 Dec 2016 13:57:14 +0000 (10:57 -0300)
committerThibault Saunier <tsaunier@gnome.org>
Fri, 16 Dec 2016 14:27:31 +0000 (11:27 -0300)
In gst_audio_check_valid_channel_positions the mask
is an out parameter.

And minor conversion from a print to a GST_ERROR.

gst-libs/gst/audio/audio-channels.c
gst-libs/gst/pbutils/encoding-profile.c

index 77bbccf57c94787621a0f15206f92258fe17f51f..8097a49599c98e5ed04fccb6ba690ae9ff82a58a 100644 (file)
@@ -312,7 +312,7 @@ gst_audio_check_valid_channel_positions (const GstAudioChannelPosition *
  * @position: (array length=channels): The %GstAudioChannelPositions
  * @channels: The number of channels.
  * @force_order: Only consider the GStreamer channel order.
- * @channel_mask: (array): the output channel mask
+ * @channel_mask: (out): the output channel mask
  *
  * Convert the @position array of @channels channels to a bitmask.
  *
index 0058c8638af7131c17d0437675a88b837209da45..b12430c44956e2c25fd496aa4c495778d2f6eb28 100644 (file)
@@ -1394,7 +1394,7 @@ parse_encoding_profile (const gchar * value)
 
       presence = g_ascii_strtoll (strpresence_v[1], &endptr, 10);
       if (endptr == strpresence_v[1]) {
-        g_printerr ("Wrong presence %s\n", strpresence_v[1]);
+        GST_ERROR ("Wrong presence %s\n", strpresence_v[1]);
 
         return NULL;
       }