mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 03:01:03 +00:00
rtsp: fix some GIR annotations
Mostly related to out and array parameters.
This commit is contained in:
parent
fe6f65b1c2
commit
31061ada4e
4 changed files with 11 additions and 10 deletions
|
@ -229,8 +229,8 @@ gst_rtsp_message_init_request (GstRTSPMessage * msg, GstRTSPMethod method,
|
||||||
* gst_rtsp_message_parse_request:
|
* gst_rtsp_message_parse_request:
|
||||||
* @msg: a #GstRTSPMessage
|
* @msg: a #GstRTSPMessage
|
||||||
* @method: (out) (allow-none): location to hold the method
|
* @method: (out) (allow-none): location to hold the method
|
||||||
* @uri: (out) (allow-none): location to hold the uri
|
* @uri: (out) (allow-none) (transfer none): location to hold the uri
|
||||||
* @version: (out) (allow-none): location to hold the version
|
* @version: (out) (allow-none) (transfer 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
|
||||||
|
@ -363,8 +363,8 @@ gst_rtsp_message_init_response (GstRTSPMessage * msg, GstRTSPStatusCode code,
|
||||||
* gst_rtsp_message_parse_response:
|
* gst_rtsp_message_parse_response:
|
||||||
* @msg: a #GstRTSPMessage
|
* @msg: a #GstRTSPMessage
|
||||||
* @code: (out) (allow-none): location to hold the status code
|
* @code: (out) (allow-none): location to hold the status code
|
||||||
* @reason: (out) (allow-none): location to hold the status reason
|
* @reason: (out) (allow-none) (transfer none): location to hold the status reason
|
||||||
* @version: (out) (allow-none): location to hold the version
|
* @version: (out) (allow-none) (transfer 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
|
||||||
|
@ -1277,7 +1277,8 @@ parse_auth_credentials (GPtrArray * auth_credentials, const gchar * header,
|
||||||
*
|
*
|
||||||
* Parses the credentials given in a WWW-Authenticate or Authorization header.
|
* Parses the credentials given in a WWW-Authenticate or Authorization header.
|
||||||
*
|
*
|
||||||
* Returns: %NULL-terminated array of GstRTSPAuthCredential or %NULL.
|
* Returns: (array zero-terminated=1):
|
||||||
|
* %NULL-terminated array of GstRTSPAuthCredential or %NULL.
|
||||||
*
|
*
|
||||||
* Since: 1.12
|
* Since: 1.12
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -254,7 +254,7 @@ done:
|
||||||
/**
|
/**
|
||||||
* gst_rtsp_range_parse:
|
* gst_rtsp_range_parse:
|
||||||
* @rangestr: a range string to parse
|
* @rangestr: a range string to parse
|
||||||
* @range: location to hold the #GstRTSPTimeRange result
|
* @range: (out): location to hold the #GstRTSPTimeRange result
|
||||||
*
|
*
|
||||||
* Parse @rangestr to a #GstRTSPTimeRange.
|
* Parse @rangestr to a #GstRTSPTimeRange.
|
||||||
*
|
*
|
||||||
|
@ -562,8 +562,8 @@ get_time (GstRTSPRangeUnit unit, const GstRTSPTime * t1,
|
||||||
/**
|
/**
|
||||||
* gst_rtsp_range_get_times:
|
* gst_rtsp_range_get_times:
|
||||||
* @range: a #GstRTSPTimeRange
|
* @range: a #GstRTSPTimeRange
|
||||||
* @min: result minimum #GstClockTime
|
* @min: (out): result minimum #GstClockTime
|
||||||
* @max: result maximum #GstClockTime
|
* @max: (out): result maximum #GstClockTime
|
||||||
*
|
*
|
||||||
* Retrieve the minimum and maximum values from @range converted to
|
* Retrieve the minimum and maximum values from @range converted to
|
||||||
* #GstClockTime in @min and @max.
|
* #GstClockTime in @min and @max.
|
||||||
|
|
|
@ -276,7 +276,7 @@ get_default_lower_trans (GstRTSPTransport * transport)
|
||||||
/**
|
/**
|
||||||
* gst_rtsp_transport_get_manager:
|
* gst_rtsp_transport_get_manager:
|
||||||
* @trans: a #GstRTSPTransMode
|
* @trans: a #GstRTSPTransMode
|
||||||
* @manager: location to hold the result
|
* @manager: (out) (nullable) (transfer none): location to hold the result
|
||||||
* @option: option index.
|
* @option: option index.
|
||||||
*
|
*
|
||||||
* Get the #GstElement that can handle the buffers transported over @trans.
|
* Get the #GstElement that can handle the buffers transported over @trans.
|
||||||
|
|
|
@ -284,7 +284,7 @@ gst_rtsp_url_set_port (GstRTSPUrl * url, guint16 port)
|
||||||
/**
|
/**
|
||||||
* gst_rtsp_url_get_port:
|
* gst_rtsp_url_get_port:
|
||||||
* @url: a #GstRTSPUrl
|
* @url: a #GstRTSPUrl
|
||||||
* @port: location to hold the port
|
* @port: (out): location to hold the port
|
||||||
*
|
*
|
||||||
* Get the port number of @url.
|
* Get the port number of @url.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue