mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
docs: Fix argument and annotation typos
* colorbalance: Fix misspelled annotation * rtsp: Replace incorrectly documented function argument * sdp: Escape @ character to avoid gtk-doc warning * video-*: Add missing annotation colon * videodecoder/video-color: Fix function argument typos * videoutils: Remove unknown annotation field Fixes https://bugzilla.gnome.org/show_bug.cgi?id=725521
This commit is contained in:
parent
53aab8eefa
commit
5b4f2ba20b
7 changed files with 10 additions and 10 deletions
|
@ -273,7 +273,7 @@ gst_rtsp_transport_get_mime (GstRTSPTransMode trans, const gchar ** mime)
|
|||
/**
|
||||
* gst_rtsp_transport_get_media_type:
|
||||
* @transport: a #GstRTSPTransport
|
||||
* @mime: location to hold the result
|
||||
* @media_type: media type of @transport
|
||||
*
|
||||
* Get the media type of @transport. This media type is typically
|
||||
* used to generate #GstCaps events.
|
||||
|
|
|
@ -692,7 +692,7 @@ static const gchar hex[16] = "0123456789ABCDEF";
|
|||
*
|
||||
* Creates a uri from @msg with the given @scheme. The uri has the format:
|
||||
*
|
||||
* @scheme:///[#type=value *[&type=value]]
|
||||
* \@scheme:///[#type=value *[&type=value]]
|
||||
*
|
||||
* Where each value is url encoded.
|
||||
*
|
||||
|
|
|
@ -117,7 +117,7 @@ gst_color_balance_base_init (GstColorBalanceInterface * iface)
|
|||
*
|
||||
* Retrieve a list of the available channels.
|
||||
*
|
||||
* Returns: (element-type GstColorBalanceChannel) (tranfer none): A
|
||||
* Returns: (element-type GstColorBalanceChannel) (transfer none): A
|
||||
* GList containing pointers to #GstColorBalanceChannel
|
||||
* objects. The list is owned by the #GstColorBalance
|
||||
* instance and must not be freed.
|
||||
|
|
|
@ -392,7 +392,7 @@ GstFlowReturn gst_video_decoder_drop_frame (GstVideoDecoder *dec,
|
|||
void gst_video_decoder_release_frame (GstVideoDecoder * dec,
|
||||
GstVideoCodecFrame * frame);
|
||||
|
||||
void gst_video_decoder_merge_tags (GstVideoDecoder *dec,
|
||||
void gst_video_decoder_merge_tags (GstVideoDecoder *decoder,
|
||||
const GstTagList *tags,
|
||||
GstTagMergeMode mode);
|
||||
|
||||
|
|
|
@ -42,8 +42,8 @@ typedef struct _GstVideoCodecFrame GstVideoCodecFrame;
|
|||
* GstVideoCodecState:
|
||||
* @info: The #GstVideoInfo describing the stream
|
||||
* @caps: The #GstCaps
|
||||
* @codec_data: (optional) a #GstBuffer corresponding to the
|
||||
* 'codec_data' field of a stream.
|
||||
* @codec_data: a #GstBuffer corresponding to the
|
||||
* 'codec_data' field of a stream, or NULL.
|
||||
*
|
||||
* Structure representing the state of an incoming or outgoing video
|
||||
* stream for encoders and decoders.
|
||||
|
|
|
@ -311,7 +311,7 @@ gst_navigation_query_set_commandsv (GstQuery * query, gint n_cmds,
|
|||
/**
|
||||
* gst_navigation_query_parse_commands_length:
|
||||
* @query: a #GstQuery
|
||||
* @n_cmds: (out) the number of commands in this query.
|
||||
* @n_cmds: (out): the number of commands in this query.
|
||||
*
|
||||
* Parse the number of commands in the #GstNavigation commands @query.
|
||||
*
|
||||
|
@ -342,7 +342,7 @@ gst_navigation_query_parse_commands_length (GstQuery * query, guint * n_cmds)
|
|||
* gst_navigation_query_parse_commands_nth:
|
||||
* @query: a #GstQuery
|
||||
* @nth: the nth command to retrieve.
|
||||
* @cmd: (out) a pointer to store the nth command into.
|
||||
* @cmd: (out): a pointer to store the nth command into.
|
||||
*
|
||||
* Parse the #GstNavigation command query and retrieve the @nth command from
|
||||
* it into @cmd. If the list contains less elements than @nth, @cmd will be
|
||||
|
|
|
@ -132,7 +132,7 @@ gst_video_colorimetry_to_string (GstVideoColorimetry * cinfo)
|
|||
|
||||
/**
|
||||
* gst_video_colorimetry_matches:
|
||||
* @info: a #GstVideoInfo
|
||||
* @cinfo: a #GstVideoInfo
|
||||
* @color: a colorimetry string
|
||||
*
|
||||
* Check if the colorimetry information in @info matches that of the
|
||||
|
@ -156,7 +156,7 @@ gst_video_colorimetry_matches (GstVideoColorimetry * cinfo, const gchar * color)
|
|||
* gst_video_color_range_offsets:
|
||||
* @range: a #GstVideoColorRange
|
||||
* @info: a #GstVideoFormatInfo
|
||||
* @offsets: (out): output offsets
|
||||
* @offset: (out): output offsets
|
||||
* @scale: (out): output scale
|
||||
*
|
||||
* Compute the offset and scale values for each component of @info. For each
|
||||
|
|
Loading…
Reference in a new issue