From 43f3f837fa9b3219787cf5b0646b7803d071a681 Mon Sep 17 00:00:00 2001 From: Thiago Santos Date: Thu, 15 May 2014 20:34:48 -0300 Subject: [PATCH] mpegts: mpegtsdescriptor: fix gobject-introspection warnings Adds missing : to gobject-introspection markers --- gst-libs/gst/mpegts/gstmpegtsdescriptor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst-libs/gst/mpegts/gstmpegtsdescriptor.c b/gst-libs/gst/mpegts/gstmpegtsdescriptor.c index eceaf9fcbe..395b9aee96 100644 --- a/gst-libs/gst/mpegts/gstmpegtsdescriptor.c +++ b/gst-libs/gst/mpegts/gstmpegtsdescriptor.c @@ -279,7 +279,7 @@ _encode_control_codes (gchar * text, gsize length, gboolean is_multibyte) /** * dvb_text_from_utf8: * @text: The text to convert. This should be in UTF-8 format - * @out_size: (out) the byte length of the new text + * @out_size: (out): the byte length of the new text * * Converts UTF-8 strings to text characters compliant with EN 300 468. * The converted text can be used directly in DVB #GstMpegTsDescriptor @@ -292,7 +292,7 @@ _encode_control_codes (gchar * text, gsize length, gboolean is_multibyte) * If no character map that contains all characters could be found, the * string is converted to ISO 6937 with unknown characters set to `?`. * - * Returns: (transfer full) byte array of size @out_size + * Returns: (transfer full): byte array of size @out_size */ guint8 * dvb_text_from_utf8 (const gchar * text, gsize * out_size)