Top | ![]() |
![]() |
![]() |
![]() |
DVB variants of MPEG-TS sectionsDVB variants of MPEG-TS sections — Sections for the various DVB specifications |
enum | GstMpegTsSectionDVBTableID |
struct | GstMpegTsNIT |
struct | GstMpegTsNITStream |
struct | GstMpegTsBAT |
struct | GstMpegTsBATStream |
struct | GstMpegTsSDT |
struct | GstMpegTsSDTService |
struct | GstMpegTsEIT |
struct | GstMpegTsEITEvent |
enum | GstMpegTsRunningStatus |
struct | GstMpegTsTOT |
const GstMpegTsNIT *
gst_mpegts_section_get_nit (GstMpegTsSection *section
);
Returns the GstMpegTsNIT contained in the section
.
GstMpegTsNIT *
gst_mpegts_nit_new (void
);
Allocates and initializes a GstMpegTsNIT.
GstMpegTsNITStream *
gst_mpegts_nit_stream_new (void
);
Allocates and initializes a GstMpegTsNITStream
GstMpegTsSection *
gst_mpegts_section_from_nit (GstMpegTsNIT *nit
);
Ownership of nit
is taken. The data in nit
is managed by the GstMpegTsSection
const GstMpegTsSDT *
gst_mpegts_section_get_sdt (GstMpegTsSection *section
);
Returns the GstMpegTsSDT contained in the section
.
GstMpegTsSDT *
gst_mpegts_sdt_new (void
);
Allocates and initializes a GstMpegTsSDT.
GstMpegTsSDTService *
gst_mpegts_sdt_service_new (void
);
Allocates and initializes a GstMpegTsSDTService.
GstMpegTsSection *
gst_mpegts_section_from_sdt (GstMpegTsSDT *sdt
);
Ownership of sdt
is taken. The data in sdt
is managed by the GstMpegTsSection
const GstMpegTsEIT *
gst_mpegts_section_get_eit (GstMpegTsSection *section
);
Returns the GstMpegTsEIT contained in the section
.
GstDateTime *
gst_mpegts_section_get_tdt (GstMpegTsSection *section
);
Returns the GstDateTime of the TDT
The GstDateTime contained in the section, or NULL
if an error happened. Release with gst_date_time_unref when done.
const GstMpegTsTOT *
gst_mpegts_section_get_tot (GstMpegTsSection *section
);
Returns the GstMpegTsTOT contained in the section
.
Values for a GstMpegTsSection table_id.
These are the registered DVB table_id variants.
see also: GstMpegTsSectionTableID
struct GstMpegTsNIT { gboolean actual_network; guint16 network_id; GPtrArray *descriptors; GPtrArray *streams; };
Network Information Table (ISO/IEC 13818-1 / EN 300 468)
struct GstMpegTsNITStream { guint16 transport_stream_id; guint16 original_network_id; GPtrArray *descriptors; };
struct GstMpegTsBAT { GPtrArray *descriptors; GPtrArray *streams; };
DVB Bouquet Association Table (EN 300 468)
struct GstMpegTsBATStream { guint16 transport_stream_id; guint16 original_network_id; GPtrArray *descriptors; };
struct GstMpegTsSDT { guint16 original_network_id; gboolean actual_ts; guint16 transport_stream_id; GPtrArray *services; };
Service Description Table (EN 300 468)
struct GstMpegTsSDTService { guint16 service_id; gboolean EIT_schedule_flag; gboolean EIT_present_following_flag; GstMpegTsRunningStatus running_status; gboolean free_CA_mode; GPtrArray *descriptors; };
The program number this table belongs to |
||
gboolean |
EIT schedule information is present in this transport stream |
|
gboolean |
EIT present/following information is present in this transport stream |
|
GstMpegTsRunningStatus |
Status of this service |
|
gboolean |
True if one or more streams is controlled by a CA system |
|
GPtrArray * |
List of descriptors. |
[element-type GstMpegTsDescriptor] |
struct GstMpegTsEIT { guint16 transport_stream_id; guint16 original_network_id; guint8 segment_last_section_number; guint8 last_table_id; gboolean actual_stream; gboolean present_following; GPtrArray *events; };
Event Information Table (EN 300 468)
struct GstMpegTsEITEvent { guint16 event_id; GstDateTime *start_time; guint32 duration; GstMpegTsRunningStatus running_status; gboolean free_CA_mode; GPtrArray *descriptors; };
Event from a GstMpegTsEIT
GstDateTime * |
||
GstMpegTsRunningStatus |
||
gboolean |
||
GPtrArray * |
List of descriptors. |
[element-type GstMpegTsDescriptor] |
Running status of a service.
Corresponds to table 6 of ETSI EN 300 468 (v1.13.0)
struct GstMpegTsTOT { GstDateTime *utc_time; GPtrArray *descriptors; };
Time Offset Table (EN 300 468)
GstDateTime * |
||
GPtrArray * |
List of descriptors. |
[element-type GstMpegTsDescriptor] |