Use proper GtkDoc notation for NULL/FALSE/TRUE

This commit is contained in:
Reynaldo H. Verdejo Pinochet 2017-10-03 14:31:18 -07:00
parent c610076d85
commit e81c334ca9
16 changed files with 56 additions and 56 deletions

View file

@ -719,7 +719,7 @@ gst_audio_decoder_negotiate_unlocked (GstAudioDecoder * dec)
* Unmark GST_PAD_FLAG_NEED_RECONFIGURE in any case. But mark it again if * Unmark GST_PAD_FLAG_NEED_RECONFIGURE in any case. But mark it again if
* negotiate fails. * negotiate fails.
* *
* Returns: #TRUE if the negotiation succeeded, else #FALSE. * Returns: %TRUE if the negotiation succeeded, else %FALSE.
*/ */
gboolean gboolean
gst_audio_decoder_negotiate (GstAudioDecoder * dec) gst_audio_decoder_negotiate (GstAudioDecoder * dec)

View file

@ -2800,7 +2800,7 @@ gst_audio_encoder_negotiate_unlocked (GstAudioEncoder * enc)
* Unmark GST_PAD_FLAG_NEED_RECONFIGURE in any case. But mark it again if * Unmark GST_PAD_FLAG_NEED_RECONFIGURE in any case. But mark it again if
* negotiate fails. * negotiate fails.
* *
* Returns: #TRUE if the negotiation succeeded, else #FALSE. * Returns: %TRUE if the negotiation succeeded, else %FALSE.
*/ */
gboolean gboolean
gst_audio_encoder_negotiate (GstAudioEncoder * enc) gst_audio_encoder_negotiate (GstAudioEncoder * enc)

View file

@ -1156,7 +1156,7 @@ gst_encoding_container_profile_new (const gchar * name,
/** /**
* gst_encoding_video_profile_new: * gst_encoding_video_profile_new:
* @format: (transfer none): the #GstCaps * @format: (transfer none): the #GstCaps
* @preset: (allow-none): the preset(s) to use on the encoder, can be #NULL * @preset: (allow-none): the preset(s) to use on the encoder, can be %NULL
* @restriction: (allow-none): the #GstCaps used to restrict the input to the encoder, can be * @restriction: (allow-none): the #GstCaps used to restrict the input to the encoder, can be
* NULL. See gst_encoding_profile_get_restriction() for more details. * NULL. See gst_encoding_profile_get_restriction() for more details.
* @presence: the number of time this stream must be used. 0 means any number of * @presence: the number of time this stream must be used. 0 means any number of
@ -1187,7 +1187,7 @@ gst_encoding_video_profile_new (GstCaps * format, const gchar * preset,
/** /**
* gst_encoding_audio_profile_new: * gst_encoding_audio_profile_new:
* @format: (transfer none): the #GstCaps * @format: (transfer none): the #GstCaps
* @preset: (allow-none): the preset(s) to use on the encoder, can be #NULL * @preset: (allow-none): the preset(s) to use on the encoder, can be %NULL
* @restriction: (allow-none): the #GstCaps used to restrict the input to the encoder, can be * @restriction: (allow-none): the #GstCaps used to restrict the input to the encoder, can be
* NULL. See gst_encoding_profile_get_restriction() for more details. * NULL. See gst_encoding_profile_get_restriction() for more details.
* @presence: the number of time this stream must be used. 0 means any number of * @presence: the number of time this stream must be used. 0 means any number of

View file

@ -899,7 +899,7 @@ VIDEO_INFO_ACCESSOR_CODE (max_bitrate, guint, 0);
* gst_discoverer_video_info_is_image: * gst_discoverer_video_info_is_image:
* @info: a #GstDiscovererVideoInfo * @info: a #GstDiscovererVideoInfo
* *
* Returns: #TRUE if the video stream corresponds to an image (i.e. only contains * Returns: %TRUE if the video stream corresponds to an image (i.e. only contains
* one frame). * one frame).
*/ */
gboolean gboolean

View file

@ -870,7 +870,7 @@ remote_address_failed:
* @response: a #GstRTSPMessage * @response: a #GstRTSPMessage
* *
* Attempt to connect to the url of @conn made with * Attempt to connect to the url of @conn made with
* gst_rtsp_connection_create(). If @timeout is #NULL this function can block * gst_rtsp_connection_create(). If @timeout is %NULL this function can block
* forever. If @timeout contains a valid timeout, this function will return * forever. If @timeout contains a valid timeout, this function will return
* #GST_RTSP_ETIMEOUT after the timeout expired. If @conn is set to tunneled, * #GST_RTSP_ETIMEOUT after the timeout expired. If @conn is set to tunneled,
* @response will contain a response to the tunneling request messages. * @response will contain a response to the tunneling request messages.
@ -1060,7 +1060,7 @@ add_auth_header (GstRTSPConnection * conn, GstRTSPMessage * message)
* @timeout: a #GTimeVal timeout * @timeout: a #GTimeVal timeout
* *
* Attempt to connect to the url of @conn made with * Attempt to connect to the url of @conn made with
* gst_rtsp_connection_create(). If @timeout is #NULL this function can block * gst_rtsp_connection_create(). If @timeout is %NULL this function can block
* forever. If @timeout contains a valid timeout, this function will return * forever. If @timeout contains a valid timeout, this function will return
* #GST_RTSP_ETIMEOUT after the timeout expired. * #GST_RTSP_ETIMEOUT after the timeout expired.
* *
@ -1409,10 +1409,10 @@ read_line (GstRTSPConnection * conn, guint8 * buffer, guint * idx, guint size,
* @conn: a #GstRTSPConnection * @conn: a #GstRTSPConnection
* @data: the data to write * @data: the data to write
* @size: the size of @data * @size: the size of @data
* @timeout: a timeout value or #NULL * @timeout: a timeout value or %NULL
* *
* Attempt to write @size bytes of @data to the connected @conn, blocking up to * Attempt to write @size bytes of @data to the connected @conn, blocking up to
* the specified @timeout. @timeout can be #NULL, in which case this function * the specified @timeout. @timeout can be %NULL, in which case this function
* might block forever. * might block forever.
* *
* This function can be cancelled with gst_rtsp_connection_flush(). * This function can be cancelled with gst_rtsp_connection_flush().
@ -1549,10 +1549,10 @@ message_to_string (GstRTSPConnection * conn, GstRTSPMessage * message)
* gst_rtsp_connection_send: * gst_rtsp_connection_send:
* @conn: a #GstRTSPConnection * @conn: a #GstRTSPConnection
* @message: the message to send * @message: the message to send
* @timeout: a timeout value or #NULL * @timeout: a timeout value or %NULL
* *
* Attempt to send @message to the connected @conn, blocking up to * Attempt to send @message to the connected @conn, blocking up to
* the specified @timeout. @timeout can be #NULL, in which case this function * the specified @timeout. @timeout can be %NULL, in which case this function
* might block forever. * might block forever.
* *
* This function can be cancelled with gst_rtsp_connection_flush(). * This function can be cancelled with gst_rtsp_connection_flush().
@ -2127,10 +2127,10 @@ invalid_body_len:
* @conn: a #GstRTSPConnection * @conn: a #GstRTSPConnection
* @data: the data to read * @data: the data to read
* @size: the size of @data * @size: the size of @data
* @timeout: a timeout value or #NULL * @timeout: a timeout value or %NULL
* *
* Attempt to read @size bytes into @data from the connected @conn, blocking up to * Attempt to read @size bytes into @data from the connected @conn, blocking up to
* the specified @timeout. @timeout can be #NULL, in which case this function * the specified @timeout. @timeout can be %NULL, in which case this function
* might block forever. * might block forever.
* *
* This function can be cancelled with gst_rtsp_connection_flush(). * This function can be cancelled with gst_rtsp_connection_flush().
@ -2206,10 +2206,10 @@ no_message:
* gst_rtsp_connection_receive: * gst_rtsp_connection_receive:
* @conn: a #GstRTSPConnection * @conn: a #GstRTSPConnection
* @message: the message to read * @message: the message to read
* @timeout: a timeout value or #NULL * @timeout: a timeout value or %NULL
* *
* Attempt to read into @message from the connected @conn, blocking up to * Attempt to read into @message from the connected @conn, blocking up to
* the specified @timeout. @timeout can be #NULL, in which case this function * the specified @timeout. @timeout can be %NULL, in which case this function
* might block forever. * might block forever.
* *
* This function can be cancelled with gst_rtsp_connection_flush(). * This function can be cancelled with gst_rtsp_connection_flush().
@ -2393,7 +2393,7 @@ gst_rtsp_connection_free (GstRTSPConnection * conn)
* with #GST_RTSP_OK, @revents will contain a bitmask of available operations on * with #GST_RTSP_OK, @revents will contain a bitmask of available operations on
* @conn. * @conn.
* *
* @timeout can be #NULL, in which case this function might block forever. * @timeout can be %NULL, in which case this function might block forever.
* *
* This function can be cancelled with gst_rtsp_connection_flush(). * This function can be cancelled with gst_rtsp_connection_flush().
* *

View file

@ -199,7 +199,7 @@ gst_rtsp_message_init_request (GstRTSPMessage * msg, GstRTSPMethod method,
* @version: (out) (allow-none): location to hold the version * @version: (out) (allow-none): location to hold the version
* *
* Parse the request message @msg and store the values @method, @uri and * Parse the request message @msg and store the values @method, @uri and
* @version. The result locations can be #NULL if one is not interested in its * @version. The result locations can be %NULL if one is not interested in its
* value. * value.
* *
* @uri remains valid for as long as @msg is valid and unchanged. * @uri remains valid for as long as @msg is valid and unchanged.
@ -234,9 +234,9 @@ gst_rtsp_message_parse_request (GstRTSPMessage * msg,
* Create a new response #GstRTSPMessage with @code and @reason and store the * Create a new response #GstRTSPMessage with @code and @reason and store the
* result message in @msg. Free with gst_rtsp_message_free(). * result message in @msg. Free with gst_rtsp_message_free().
* *
* When @reason is #NULL, the default reason for @code will be used. * When @reason is %NULL, the default reason for @code will be used.
* *
* When @request is not #NULL, the relevant headers will be copied to the new * When @request is not %NULL, the relevant headers will be copied to the new
* response message. * response message.
* *
* Returns: a #GstRTSPResult. * Returns: a #GstRTSPResult.
@ -265,9 +265,9 @@ gst_rtsp_message_new_response (GstRTSPMessage ** msg, GstRTSPStatusCode code,
* *
* Initialize @msg with @code and @reason. * Initialize @msg with @code and @reason.
* *
* When @reason is #NULL, the default reason for @code will be used. * When @reason is %NULL, the default reason for @code will be used.
* *
* When @request is not #NULL, the relevant headers will be copied to the new * When @request is not %NULL, the relevant headers will be copied to the new
* response message. * response message.
* *
* Returns: a #GstRTSPResult. * Returns: a #GstRTSPResult.
@ -333,7 +333,7 @@ gst_rtsp_message_init_response (GstRTSPMessage * msg, GstRTSPStatusCode code,
* @version: (out) (allow-none): location to hold the version * @version: (out) (allow-none): location to hold the version
* *
* Parse the response message @msg and store the values @code, @reason and * Parse the response message @msg and store the values @code, @reason and
* @version. The result locations can be #NULL if one is not interested in its * @version. The result locations can be %NULL if one is not interested in its
* value. * value.
* *
* @reason remains valid for as long as @msg is valid and unchanged. * @reason remains valid for as long as @msg is valid and unchanged.
@ -904,7 +904,7 @@ gst_rtsp_message_get_body (const GstRTSPMessage * msg, guint8 ** data,
* @size: (out): location for the size of @data * @size: (out): location for the size of @data
* *
* Take the body of @msg and store it in @data and @size. After this method, * Take the body of @msg and store it in @data and @size. After this method,
* the body and size of @msg will be set to #NULL and 0 respectively. * the body and size of @msg will be set to %NULL and 0 respectively.
* *
* Returns: #GST_RTSP_OK. * Returns: #GST_RTSP_OK.
*/ */

View file

@ -282,7 +282,7 @@ get_default_lower_trans (GstRTSPTransport * transport)
* It is possible that there are several managers available, use @option to * It is possible that there are several managers available, use @option to
* selected one. * selected one.
* *
* @manager will contain an element name or #NULL when no manager is * @manager will contain an element name or %NULL when no manager is
* needed/available for @trans. * needed/available for @trans.
* *
* Returns: #GST_RTSP_OK. * Returns: #GST_RTSP_OK.
@ -587,7 +587,7 @@ invalid_transport:
* Convert @transport into a string that can be used to signal the transport in * Convert @transport into a string that can be used to signal the transport in
* an RTSP SETUP response. * an RTSP SETUP response.
* *
* Returns: a string describing the RTSP transport or #NULL when the transport * Returns: a string describing the RTSP transport or %NULL when the transport
* is invalid. * is invalid.
*/ */
gchar * gchar *

View file

@ -3883,7 +3883,7 @@ gst_video_decoder_negotiate_unlocked (GstVideoDecoder * decoder)
* Unmark GST_PAD_FLAG_NEED_RECONFIGURE in any case. But mark it again if * Unmark GST_PAD_FLAG_NEED_RECONFIGURE in any case. But mark it again if
* negotiate fails. * negotiate fails.
* *
* Returns: #TRUE if the negotiation succeeded, else #FALSE. * Returns: %TRUE if the negotiation succeeded, else %FALSE.
*/ */
gboolean gboolean
gst_video_decoder_negotiate (GstVideoDecoder * decoder) gst_video_decoder_negotiate (GstVideoDecoder * decoder)

View file

@ -1710,7 +1710,7 @@ gst_video_encoder_negotiate_unlocked (GstVideoEncoder * encoder)
* Unmark GST_PAD_FLAG_NEED_RECONFIGURE in any case. But mark it again if * Unmark GST_PAD_FLAG_NEED_RECONFIGURE in any case. But mark it again if
* negotiate fails. * negotiate fails.
* *
* Returns: #TRUE if the negotiation succeeded, else #FALSE. * Returns: %TRUE if the negotiation succeeded, else %FALSE.
*/ */
gboolean gboolean
gst_video_encoder_negotiate (GstVideoEncoder * encoder) gst_video_encoder_negotiate (GstVideoEncoder * encoder)

View file

@ -71,7 +71,7 @@ gst_buffer_pool_config_set_video_alignment (GstStructure * config,
* Get the video alignment from the bufferpool configuration @config in * Get the video alignment from the bufferpool configuration @config in
* in @align * in @align
* *
* Returns: #TRUE if @config could be parsed correctly. * Returns: %TRUE if @config could be parsed correctly.
*/ */
gboolean gboolean
gst_buffer_pool_config_get_video_alignment (GstStructure * config, gst_buffer_pool_config_get_video_alignment (GstStructure * config,

View file

@ -163,7 +163,7 @@ gst_video_sink_class_init (GstVideoSinkClass * klass)
/** /**
* GstVideoSink:show-preroll-frame: * GstVideoSink:show-preroll-frame:
* *
* Whether to show video frames during preroll. If set to #FALSE, video * Whether to show video frames during preroll. If set to %FALSE, video
* frames will only be rendered in PLAYING state. * frames will only be rendered in PLAYING state.
*/ */
g_object_class_install_property (gobject_class, PROP_SHOW_PREROLL_FRAME, g_object_class_install_property (gobject_class, PROP_SHOW_PREROLL_FRAME,

View file

@ -109,7 +109,7 @@ gst_video_get_colorimetry (const gchar * s)
* Parse the colorimetry string and update @cinfo with the parsed * Parse the colorimetry string and update @cinfo with the parsed
* values. * values.
* *
* Returns: #TRUE if @color points to valid colorimetry info. * Returns: %TRUE if @color points to valid colorimetry info.
*/ */
gboolean gboolean
gst_video_colorimetry_from_string (GstVideoColorimetry * cinfo, gst_video_colorimetry_from_string (GstVideoColorimetry * cinfo,
@ -168,7 +168,7 @@ gst_video_colorimetry_to_string (const GstVideoColorimetry * cinfo)
* Check if the colorimetry information in @info matches that of the * Check if the colorimetry information in @info matches that of the
* string @color. * string @color.
* *
* Returns: #TRUE if @color conveys the same colorimetry info as the color * Returns: %TRUE if @color conveys the same colorimetry info as the color
* information in @info. * information in @info.
*/ */
gboolean gboolean
@ -253,7 +253,7 @@ gst_video_color_range_offsets (GstVideoColorRange range,
* *
* Compare the 2 colorimetry sets for equality * Compare the 2 colorimetry sets for equality
* *
* Returns: #TRUE if @cinfo and @other are equal. * Returns: %TRUE if @cinfo and @other are equal.
* *
* Since: 1.6 * Since: 1.6
*/ */

View file

@ -720,11 +720,11 @@ gst_decode_bin_class_init (GstDecodeBinClass * klass)
* emitted before looking for any elements that can handle that stream. * emitted before looking for any elements that can handle that stream.
* *
* > Invocation of signal handlers stops after the first signal handler * > Invocation of signal handlers stops after the first signal handler
* > returns #FALSE. Signal handlers are invoked in the order they were * > returns %FALSE. Signal handlers are invoked in the order they were
* > connected in. * > connected in.
* *
* Returns: #TRUE if you wish decodebin to look for elements that can * Returns: %TRUE if you wish decodebin to look for elements that can
* handle the given @caps. If #FALSE, those caps will be considered as * handle the given @caps. If %FALSE, those caps will be considered as
* final and the pad will be exposed as such (see 'pad-added' signal of * final and the pad will be exposed as such (see 'pad-added' signal of
* #GstElement). * #GstElement).
*/ */
@ -776,11 +776,11 @@ gst_decode_bin_class_init (GstDecodeBinClass * klass)
* the application to perform additional sorting or filtering on the element * the application to perform additional sorting or filtering on the element
* factory array. * factory array.
* *
* The callee should copy and modify @factories or return #NULL if the * The callee should copy and modify @factories or return %NULL if the
* order should not change. * order should not change.
* *
* > Invocation of signal handlers stops after one signal handler has * > Invocation of signal handlers stops after one signal handler has
* > returned something else than #NULL. Signal handlers are invoked in * > returned something else than %NULL. Signal handlers are invoked in
* > the order they were connected in. * > the order they were connected in.
* > Don't connect signal handlers with the #G_CONNECT_AFTER flag to this * > Don't connect signal handlers with the #G_CONNECT_AFTER flag to this
* > signal, they will never be invoked! * > signal, they will never be invoked!
@ -847,7 +847,7 @@ gst_decode_bin_class_init (GstDecodeBinClass * klass)
* be used to tell the element about the downstream supported caps * be used to tell the element about the downstream supported caps
* for example. * for example.
* *
* Returns: #TRUE if the query was handled, #FALSE otherwise. * Returns: %TRUE if the query was handled, %FALSE otherwise.
*/ */
gst_decode_bin_signals[SIGNAL_AUTOPLUG_QUERY] = gst_decode_bin_signals[SIGNAL_AUTOPLUG_QUERY] =
g_signal_new ("autoplug-query", G_TYPE_FROM_CLASS (klass), g_signal_new ("autoplug-query", G_TYPE_FROM_CLASS (klass),

View file

@ -651,11 +651,11 @@ gst_parse_bin_class_init (GstParseBinClass * klass)
* emitted before looking for any elements that can handle that stream. * emitted before looking for any elements that can handle that stream.
* *
* > Invocation of signal handlers stops after the first signal handler * > Invocation of signal handlers stops after the first signal handler
* > returns #FALSE. Signal handlers are invoked in the order they were * > returns %FALSE. Signal handlers are invoked in the order they were
* > connected in. * > connected in.
* *
* Returns: #TRUE if you wish ParseBin to look for elements that can * Returns: %TRUE if you wish ParseBin to look for elements that can
* handle the given @caps. If #FALSE, those caps will be considered as * handle the given @caps. If %FALSE, those caps will be considered as
* final and the pad will be exposed as such (see 'pad-added' signal of * final and the pad will be exposed as such (see 'pad-added' signal of
* #GstElement). * #GstElement).
*/ */
@ -707,11 +707,11 @@ gst_parse_bin_class_init (GstParseBinClass * klass)
* the application to perform additional sorting or filtering on the element * the application to perform additional sorting or filtering on the element
* factory array. * factory array.
* *
* The callee should copy and modify @factories or return #NULL if the * The callee should copy and modify @factories or return %NULL if the
* order should not change. * order should not change.
* *
* > Invocation of signal handlers stops after one signal handler has * > Invocation of signal handlers stops after one signal handler has
* > returned something else than #NULL. Signal handlers are invoked in * > returned something else than %NULL. Signal handlers are invoked in
* > the order they were connected in. * > the order they were connected in.
* > Don't connect signal handlers with the #G_CONNECT_AFTER flag to this * > Don't connect signal handlers with the #G_CONNECT_AFTER flag to this
* > signal, they will never be invoked! * > signal, they will never be invoked!
@ -779,7 +779,7 @@ gst_parse_bin_class_init (GstParseBinClass * klass)
* be used to tell the element about the downstream supported caps * be used to tell the element about the downstream supported caps
* for example. * for example.
* *
* Returns: #TRUE if the query was handled, #FALSE otherwise. * Returns: %TRUE if the query was handled, %FALSE otherwise.
*/ */
gst_parse_bin_signals[SIGNAL_AUTOPLUG_QUERY] = gst_parse_bin_signals[SIGNAL_AUTOPLUG_QUERY] =
g_signal_new ("autoplug-query", G_TYPE_FROM_CLASS (klass), g_signal_new ("autoplug-query", G_TYPE_FROM_CLASS (klass),

View file

@ -522,11 +522,11 @@ gst_uri_decode_bin_class_init (GstURIDecodeBinClass * klass)
* emitted before looking for any elements that can handle that stream. * emitted before looking for any elements that can handle that stream.
* *
* > Invocation of signal handlers stops after the first signal handler * > Invocation of signal handlers stops after the first signal handler
* > returns #FALSE. Signal handlers are invoked in the order they were * > returns %FALSE. Signal handlers are invoked in the order they were
* > connected in. * > connected in.
* *
* Returns: #TRUE if you wish uridecodebin to look for elements that can * Returns: %TRUE if you wish uridecodebin to look for elements that can
* handle the given @caps. If #FALSE, those caps will be considered as * handle the given @caps. If %FALSE, those caps will be considered as
* final and the pad will be exposed as such (see 'pad-added' signal of * final and the pad will be exposed as such (see 'pad-added' signal of
* #GstElement). * #GstElement).
*/ */
@ -579,11 +579,11 @@ gst_uri_decode_bin_class_init (GstURIDecodeBinClass * klass)
* the application to perform additional sorting or filtering on the element * the application to perform additional sorting or filtering on the element
* factory array. * factory array.
* *
* The callee should copy and modify @factories or return #NULL if the * The callee should copy and modify @factories or return %NULL if the
* order should not change. * order should not change.
* *
* > Invocation of signal handlers stops after one signal handler has * > Invocation of signal handlers stops after one signal handler has
* > returned something else than #NULL. Signal handlers are invoked in * > returned something else than %NULL. Signal handlers are invoked in
* > the order they were connected in. * > the order they were connected in.
* > Don't connect signal handlers with the #G_CONNECT_AFTER flag to this * > Don't connect signal handlers with the #G_CONNECT_AFTER flag to this
* > signal, they will never be invoked! * > signal, they will never be invoked!
@ -652,7 +652,7 @@ gst_uri_decode_bin_class_init (GstURIDecodeBinClass * klass)
* be used to tell the element about the downstream supported caps * be used to tell the element about the downstream supported caps
* for example. * for example.
* *
* Returns: #TRUE if the query was handled, #FALSE otherwise. * Returns: %TRUE if the query was handled, %FALSE otherwise.
*/ */
gst_uri_decode_bin_signals[SIGNAL_AUTOPLUG_QUERY] = gst_uri_decode_bin_signals[SIGNAL_AUTOPLUG_QUERY] =
g_signal_new ("autoplug-query", G_TYPE_FROM_CLASS (klass), g_signal_new ("autoplug-query", G_TYPE_FROM_CLASS (klass),

View file

@ -545,11 +545,11 @@ gst_uri_source_bin_class_init (GstURISourceBinClass * klass)
* emitted before looking for any elements that can handle that stream. * emitted before looking for any elements that can handle that stream.
* *
* > Invocation of signal handlers stops after the first signal handler * > Invocation of signal handlers stops after the first signal handler
* > returns #FALSE. Signal handlers are invoked in the order they were * > returns %FALSE. Signal handlers are invoked in the order they were
* > connected in. * > connected in.
* *
* Returns: #TRUE if you wish urisourcebin to look for elements that can * Returns: %TRUE if you wish urisourcebin to look for elements that can
* handle the given @caps. If #FALSE, those caps will be considered as * handle the given @caps. If %FALSE, those caps will be considered as
* final and the pad will be exposed as such (see 'pad-added' signal of * final and the pad will be exposed as such (see 'pad-added' signal of
* #GstElement). * #GstElement).
*/ */
@ -602,11 +602,11 @@ gst_uri_source_bin_class_init (GstURISourceBinClass * klass)
* the application to perform additional sorting or filtering on the element * the application to perform additional sorting or filtering on the element
* factory array. * factory array.
* *
* The callee should copy and modify @factories or return #NULL if the * The callee should copy and modify @factories or return %NULL if the
* order should not change. * order should not change.
* *
* > Invocation of signal handlers stops after one signal handler has * > Invocation of signal handlers stops after one signal handler has
* > returned something else than #NULL. Signal handlers are invoked in * > returned something else than %NULL. Signal handlers are invoked in
* > the order they were connected in. * > the order they were connected in.
* > Don't connect signal handlers with the #G_CONNECT_AFTER flag to this * > Don't connect signal handlers with the #G_CONNECT_AFTER flag to this
* > signal, they will never be invoked! * > signal, they will never be invoked!
@ -675,7 +675,7 @@ gst_uri_source_bin_class_init (GstURISourceBinClass * klass)
* be used to tell the element about the downstream supported caps * be used to tell the element about the downstream supported caps
* for example. * for example.
* *
* Returns: #TRUE if the query was handled, #FALSE otherwise. * Returns: %TRUE if the query was handled, %FALSE otherwise.
*/ */
gst_uri_source_bin_signals[SIGNAL_AUTOPLUG_QUERY] = gst_uri_source_bin_signals[SIGNAL_AUTOPLUG_QUERY] =
g_signal_new ("autoplug-query", G_TYPE_FROM_CLASS (klass), g_signal_new ("autoplug-query", G_TYPE_FROM_CLASS (klass),