mpegts: Updated docs with new API

This commit is contained in:
Jesper Larsen 2014-02-06 13:53:49 +01:00
parent 6a5f1354b3
commit dc968163da
2 changed files with 25 additions and 1 deletions

View file

@ -188,6 +188,9 @@ GstMpegTsDescriptorType
GstMpegTsMiscDescriptorType GstMpegTsMiscDescriptorType
gst_mpegts_find_descriptor gst_mpegts_find_descriptor
gst_mpegts_parse_descriptors gst_mpegts_parse_descriptors
gst_mpegts_descriptor_from_custom
<SUBSECTION registration>
gst_mpegts_descriptor_from_registration
<SUBSECTION iso639> <SUBSECTION iso639>
GstMpegTsISO639LanguageDescriptor GstMpegTsISO639LanguageDescriptor
GstMpegTsIso639AudioType GstMpegTsIso639AudioType
@ -257,10 +260,19 @@ GstMpegTsCableOuterFECScheme
gst_mpegts_descriptor_parse_cable_delivery_system gst_mpegts_descriptor_parse_cable_delivery_system
<SUBSECTION short_event> <SUBSECTION short_event>
gst_mpegts_descriptor_parse_dvb_short_event gst_mpegts_descriptor_parse_dvb_short_event
<SUBSECTION network_name>
gst_mpegts_descriptor_parse_dvb_network_name gst_mpegts_descriptor_parse_dvb_network_name
gst_mpegts_descriptor_from_dvb_network_name
<SUBSECTION service> <SUBSECTION service>
GstMpegTsDVBServiceType GstMpegTsDVBServiceType
gst_mpegts_descriptor_parse_dvb_service gst_mpegts_descriptor_parse_dvb_service
<SUBSECTION teletext>
GstMpegTsDVBTeletextType
gst_mpegts_descriptor_parse_dvb_teletext_idx
gst_mpegts_descriptor_parse_dvb_teletext_nb
<SUBSECTION subtitling>
gst_mpegts_descriptor_parse_dvb_subtitling
gst_mpegts_descriptor_from_dvb_subtitling
<SUBSECTION Standard> <SUBSECTION Standard>
GST_TYPE_MPEG_TSDVB_CODE_RATE GST_TYPE_MPEG_TSDVB_CODE_RATE
gst_mpeg_tsdvb_code_rate_get_type gst_mpeg_tsdvb_code_rate_get_type
@ -283,17 +295,26 @@ GstMpegTsSectionTableID
GstMpegTsSectionType GstMpegTsSectionType
gst_message_new_mpegts_section gst_message_new_mpegts_section
gst_message_parse_mpegts_section gst_message_parse_mpegts_section
gst_mpegts_section_send_event
gst_event_parse_mpegts_section
gst_mpegts_section_packetize
gst_mpegts_section_new gst_mpegts_section_new
gst_mpegts_section_ref gst_mpegts_section_ref
gst_mpegts_section_unref gst_mpegts_section_unref
<SUBSECTION PAT> <SUBSECTION PAT>
GstMpegTsPatProgram GstMpegTsPatProgram
gst_mpegts_section_get_pat gst_mpegts_section_get_pat
gst_mpegts_pat_new
gst_mpegts_pat_program_new
gst_mpegts_section_from_pat
<SUBSECTION PMT> <SUBSECTION PMT>
GstMpegTsPMT GstMpegTsPMT
GstMpegTsPMTStream GstMpegTsPMTStream
GstMpegTsStreamType GstMpegTsStreamType
gst_mpegts_section_get_pmt gst_mpegts_section_get_pmt
gst_mpegts_pmt_new
gst_mpegts_pmt_stream_new
gst_mpegts_section_from_pmt
<SUBSECTION TSDT> <SUBSECTION TSDT>
gst_mpegts_section_get_tsdt gst_mpegts_section_get_tsdt
<SUBSECTION CAT> <SUBSECTION CAT>
@ -330,6 +351,9 @@ GstMpegTsSectionDVBTableID
GstMpegTsNIT GstMpegTsNIT
GstMpegTsNITStream GstMpegTsNITStream
gst_mpegts_section_get_nit gst_mpegts_section_get_nit
gst_mpegts_nit_new
gst_mpegts_nit_stream_new
gst_mpegts_section_from_nit
<SUBSECTION BAT> <SUBSECTION BAT>
GstMpegTsBAT GstMpegTsBAT
GstMpegTsBATStream GstMpegTsBATStream

View file

@ -899,7 +899,7 @@ gst_mpegts_descriptor_parse_iso_639_language (const GstMpegTsDescriptor *
* gst_mpegts_descriptor_parse_iso_639_language_idx: * gst_mpegts_descriptor_parse_iso_639_language_idx:
* @descriptor: a %GST_MTS_DESC_ISO_639_LANGUAGE #GstMpegTsDescriptor * @descriptor: a %GST_MTS_DESC_ISO_639_LANGUAGE #GstMpegTsDescriptor
* @idx: Table id of the language to parse * @idx: Table id of the language to parse
* @lang (out) (transfer none): 4-byte gchar array to hold the language code * @lang: (out) (transfer none): 4-byte gchar array to hold the language code
* @audio_type: (out) (transfer none) (allow-none): the #GstMpegTsIso639AudioType to set * @audio_type: (out) (transfer none) (allow-none): the #GstMpegTsIso639AudioType to set
* *
* Extracts the iso 639-2 language information from specific table id in @descriptor. * Extracts the iso 639-2 language information from specific table id in @descriptor.