mpegts: Documentation fixes

gtk-doc was complaining :)

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1825>
This commit is contained in:
Edward Hervey 2020-11-20 16:07:36 +01:00 committed by GStreamer Merge Bot
parent 470c79be61
commit 1749dc66c5
4 changed files with 5 additions and 12 deletions

View file

@ -2462,15 +2462,16 @@ gst_mpegts_descriptor_parse_dvb_t2_delivery_system (const GstMpegtsDescriptor
}
/**
* gst_mpegts_descriptor_parse_audio_selection_list:
* gst_mpegts_descriptor_parse_audio_preselection_list:
* @descriptor: a %GST_MTS_DESC_EXT_DVB_AUDIO_PRESELECTION #GstMpegtsDescriptor
* @list: (out) (transfer full) (element-type GstMpegtsAudioPreselectionDescriptor):
* the list of audio preselection
*
*
* Parses out a list of audio preselection from the @descriptor.
*
* Returns: %TRUE if the parsing happened correctly, else %FALSE.
*
* Since: 1.20
*/
gboolean
gst_mpegts_descriptor_parse_audio_preselection_list (const GstMpegtsDescriptor

View file

@ -1101,11 +1101,6 @@ struct _GstMpegtsAudioPreselectionDescriptor
guint8 message_id;
};
/**
* gst_mpegts_descriptor_parse_audio_preselection_list:
*
* Since: 1.20
*/
GST_MPEGTS_API
gboolean
gst_mpegts_descriptor_parse_audio_preselection_list (const GstMpegtsDescriptor

View file

@ -1342,6 +1342,8 @@ gst_mpegts_descriptor_from_custom (guint8 tag, const guint8 * data,
* Creates a #GstMpegtsDescriptor with custom @tag, @tag_extension and @data
*
* Returns: #GstMpegtsDescriptor
*
* Since: 1.20
*/
GstMpegtsDescriptor *
gst_mpegts_descriptor_from_custom_with_extension (guint8 tag,

View file

@ -380,11 +380,6 @@ GstMpegtsDescriptor *
gst_mpegts_descriptor_from_custom (guint8 tag, const guint8 *data, gsize length);
/**
* gst_mpegts_descriptor_from_custom_with_extension:
*
* Since: 1.20
*/
GST_MPEGTS_API
GstMpegtsDescriptor *
gst_mpegts_descriptor_from_custom_with_extension (guint8 tag, guint8 tag_extension, const guint8 *data, gsize length);