mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
mpegts: Add some more element-type annotations for g-i
This commit is contained in:
parent
31d7c42158
commit
73888f8e38
1 changed files with 19 additions and 1 deletions
|
@ -155,7 +155,7 @@ struct _GstMpegTsNIT
|
||||||
{
|
{
|
||||||
gboolean actual_network;
|
gboolean actual_network;
|
||||||
|
|
||||||
GPtrArray *descriptors;
|
GPtrArray *descriptors;
|
||||||
|
|
||||||
GPtrArray *streams;
|
GPtrArray *streams;
|
||||||
};
|
};
|
||||||
|
@ -183,6 +183,7 @@ struct _GstMpegTsBATStream
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GstMpegTsBAT:
|
* GstMpegTsBAT:
|
||||||
|
*
|
||||||
* @descriptors: (element-type GstMpegTsDescriptor):
|
* @descriptors: (element-type GstMpegTsDescriptor):
|
||||||
* @streams: (element-type GstMpegTsBATStream):
|
* @streams: (element-type GstMpegTsBATStream):
|
||||||
*
|
*
|
||||||
|
@ -207,6 +208,12 @@ const GstMpegTsBAT *gst_mpegts_section_get_bat (GstMpegTsSection *section);
|
||||||
typedef struct _GstMpegTsSDTService GstMpegTsSDTService;
|
typedef struct _GstMpegTsSDTService GstMpegTsSDTService;
|
||||||
typedef struct _GstMpegTsSDT GstMpegTsSDT;
|
typedef struct _GstMpegTsSDT GstMpegTsSDT;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GstMpegTsSDTService:
|
||||||
|
*
|
||||||
|
* @descriptors: (element-type GstMpegTsDescriptor): List of descriptors
|
||||||
|
*
|
||||||
|
*/
|
||||||
struct _GstMpegTsSDTService
|
struct _GstMpegTsSDTService
|
||||||
{
|
{
|
||||||
guint16 service_id;
|
guint16 service_id;
|
||||||
|
@ -222,7 +229,10 @@ struct _GstMpegTsSDTService
|
||||||
/**
|
/**
|
||||||
* GstMpegTsSDT:
|
* GstMpegTsSDT:
|
||||||
*
|
*
|
||||||
|
* @services: (element-type GstMpegTsSDTService): List of services
|
||||||
|
*
|
||||||
* Service Description Table (EN 300 468)
|
* Service Description Table (EN 300 468)
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
struct _GstMpegTsSDT
|
struct _GstMpegTsSDT
|
||||||
{
|
{
|
||||||
|
@ -248,6 +258,8 @@ typedef struct _GstMpegTsEIT GstMpegTsEIT;
|
||||||
/**
|
/**
|
||||||
* GstMpegTsEITEvent:
|
* GstMpegTsEITEvent:
|
||||||
*
|
*
|
||||||
|
* @descriptors: (element-type GstMpegTsDescriptor): List of descriptors
|
||||||
|
*
|
||||||
* Event from a @GstMpegTsEIT
|
* Event from a @GstMpegTsEIT
|
||||||
*/
|
*/
|
||||||
struct _GstMpegTsEITEvent
|
struct _GstMpegTsEITEvent
|
||||||
|
@ -266,7 +278,10 @@ struct _GstMpegTsEITEvent
|
||||||
/**
|
/**
|
||||||
* GstMpegTsEIT:
|
* GstMpegTsEIT:
|
||||||
*
|
*
|
||||||
|
* @events: (element-type GstMpegTsEITEvent): List of events
|
||||||
|
*
|
||||||
* Event Information Table (EN 300 468)
|
* Event Information Table (EN 300 468)
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
struct _GstMpegTsEIT
|
struct _GstMpegTsEIT
|
||||||
{
|
{
|
||||||
|
@ -296,7 +311,10 @@ typedef struct _GstMpegTsTOT GstMpegTsTOT;
|
||||||
/**
|
/**
|
||||||
* GstMpegTsTOT:
|
* GstMpegTsTOT:
|
||||||
*
|
*
|
||||||
|
* @descriptors: (element-type GstMpegTsDescriptor): List of descriptors
|
||||||
|
*
|
||||||
* Time Offset Table (EN 300 468)
|
* Time Offset Table (EN 300 468)
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
struct _GstMpegTsTOT
|
struct _GstMpegTsTOT
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue