mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-29 19:50:40 +00:00
docs: mpegts: add missed docs
Signed-off-by: Stefan Ringel <linuxtv@stefanringel.de> https://bugzilla.gnome.org/show_bug.cgi?id=725278
This commit is contained in:
parent
f7b17bb54f
commit
40e7bfd35d
3 changed files with 26 additions and 6 deletions
|
@ -240,6 +240,9 @@ gst_mpeg_ts_atsc_descriptor_type_get_type
|
||||||
<SECTION>
|
<SECTION>
|
||||||
<FILE>gst-dvb-descriptor</FILE>
|
<FILE>gst-dvb-descriptor</FILE>
|
||||||
GstMpegTsDVBDescriptorType
|
GstMpegTsDVBDescriptorType
|
||||||
|
<SUBSECTION content>
|
||||||
|
GstMpegTsContent
|
||||||
|
gst_mpegts_descriptor_parse_dvb_content
|
||||||
<SUBSECTION component>
|
<SUBSECTION component>
|
||||||
GstMpegTsComponentDescriptor
|
GstMpegTsComponentDescriptor
|
||||||
gst_mpegts_descriptor_parse_dvb_component
|
gst_mpegts_descriptor_parse_dvb_component
|
||||||
|
@ -258,6 +261,15 @@ gst_mpegts_descriptor_parse_satellite_delivery_system
|
||||||
GstMpegTsCableDeliverySystemDescriptor
|
GstMpegTsCableDeliverySystemDescriptor
|
||||||
GstMpegTsCableOuterFECScheme
|
GstMpegTsCableOuterFECScheme
|
||||||
gst_mpegts_descriptor_parse_cable_delivery_system
|
gst_mpegts_descriptor_parse_cable_delivery_system
|
||||||
|
<SUBSECTION terrestrial_delivery>
|
||||||
|
GstMpegTsTerrestrialDeliverySystemDescriptor
|
||||||
|
GstMpegTsTerrestrialBandwidth
|
||||||
|
GstMpegTsTerrestrialTransmissionMode
|
||||||
|
GstMpegTsTerrestrialGuardInterval
|
||||||
|
GstMpegTsTerrestrialHierarchy
|
||||||
|
GstMpegTsModulationType
|
||||||
|
GstMpegTsDVBCodeRate
|
||||||
|
gst_mpegts_descriptor_parse_terrestrial_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>
|
<SUBSECTION network_name>
|
||||||
|
|
|
@ -671,7 +671,7 @@ gst_mpegts_descriptor_parse_dvb_component (const GstMpegTsDescriptor
|
||||||
* @descriptor: a %GST_MTS_DESC_DVB_CONTENT #GstMpegTsDescriptor
|
* @descriptor: a %GST_MTS_DESC_DVB_CONTENT #GstMpegTsDescriptor
|
||||||
* @content: (out) (transfer none) (element-type GstMpegTsContent): #GstMpegTsContent
|
* @content: (out) (transfer none) (element-type GstMpegTsContent): #GstMpegTsContent
|
||||||
*
|
*
|
||||||
* Extracts the DVB content information from @descriptor:
|
* Extracts the DVB content information from @descriptor.
|
||||||
*
|
*
|
||||||
* Returns: %TRUE if the parsing happened correctly, else %FALSE.
|
* Returns: %TRUE if the parsing happened correctly, else %FALSE.
|
||||||
*/
|
*/
|
||||||
|
@ -706,11 +706,11 @@ gst_mpegts_descriptor_parse_dvb_content (const GstMpegTsDescriptor
|
||||||
|
|
||||||
/* GST_MTS_DESC_DVB_TERRESTRIAL_DELIVERY_SYSTEM (0x5A) */
|
/* GST_MTS_DESC_DVB_TERRESTRIAL_DELIVERY_SYSTEM (0x5A) */
|
||||||
/**
|
/**
|
||||||
* gst_mpegts_descriptor_parse_dvb_terrestrial_delivary_system:
|
* gst_mpegts_descriptor_parse_terrestrial_delivery_system:
|
||||||
* @descriptor: a %GST_MTS_DESC_DVB_TERRESTRIAL_DELIVERY_SYSTEM #GstMpegTsDescriptor
|
* @descriptor: a %GST_MTS_DESC_DVB_TERRESTRIAL_DELIVERY_SYSTEM #GstMpegTsDescriptor
|
||||||
* @res: (out) (transfer none): #GstMpegTsTerrestrialSystemDescriptor
|
* @res: (out) (transfer none): #GstMpegTsTerrestrialDeliverySystemDescriptor
|
||||||
*
|
*
|
||||||
* Parses out the terrestrial delivery system from the @descriptor:
|
* Parses out the terrestrial delivery system from the @descriptor.
|
||||||
*
|
*
|
||||||
* Returns: %TRUE if the parsing happened correctly, else %FALSE.
|
* Returns: %TRUE if the parsing happened correctly, else %FALSE.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -312,8 +312,16 @@ struct _GstMpegTsExtendedEventItem
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @items: (element-type GstMpegTsExtendedEventItem):
|
* GstMpegTsExtendedEventDescriptor:
|
||||||
*/
|
* @desctiptor_number:
|
||||||
|
* @last_descriptor_number:
|
||||||
|
* @language_code:
|
||||||
|
* @nb_items:
|
||||||
|
* @items: (element-type GstMpegTsExtendedEventItem): the #GstMpegTsExtendedEventItem
|
||||||
|
* @text:
|
||||||
|
*
|
||||||
|
* Extended Event Descriptor (EN 300 468 v.1.13.1)
|
||||||
|
*/
|
||||||
struct _GstMpegTsExtendedEventDescriptor
|
struct _GstMpegTsExtendedEventDescriptor
|
||||||
{
|
{
|
||||||
guint8 descriptor_number;
|
guint8 descriptor_number;
|
||||||
|
|
Loading…
Reference in a new issue