mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
gst/mpegtsparse/mpegtspacketizer.c: Add flag to both sdt and nit structures to say whether the table is for the actua...
Original commit message from CVS: * gst/mpegtsparse/mpegtspacketizer.c: Add flag to both sdt and nit structures to say whether the table is for the actual network/ts or not.
This commit is contained in:
parent
870ea2afe8
commit
ed4368e08f
2 changed files with 11 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
2008-02-05 Zaheer Abbas Merali <zaheerabbas at merali dot org>
|
||||
|
||||
* gst/mpegtsparse/mpegtspacketizer.c:
|
||||
Add flag to both sdt and nit structures to say
|
||||
whether the table is for the actual network/ts
|
||||
or not.
|
||||
|
||||
2008-02-05 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
Patch by: Josep Torre Valles <josep@fluendo.com>
|
||||
|
|
|
@ -596,7 +596,7 @@ mpegts_packetizer_parse_nit (MpegTSPacketizer * packetizer,
|
|||
"network-id", G_TYPE_UINT, network_id,
|
||||
"version-number", G_TYPE_UINT, section->version_number,
|
||||
"current-next-indicator", G_TYPE_UINT, section->current_next_indicator,
|
||||
NULL);
|
||||
"actual-network", G_TYPE_BOOLEAN, section->table_id == 0x40, NULL);
|
||||
|
||||
/* see if the buffer is large enough */
|
||||
if (descriptors_loop_length) {
|
||||
|
@ -1069,7 +1069,9 @@ mpegts_packetizer_parse_sdt (MpegTSPacketizer * packetizer,
|
|||
"transport-stream-id", G_TYPE_UINT, transport_stream_id,
|
||||
"version-number", G_TYPE_UINT, section->version_number,
|
||||
"current-next-indicator", G_TYPE_UINT, section->current_next_indicator,
|
||||
"original-network-id", G_TYPE_UINT, original_network_id, NULL);
|
||||
"original-network-id", G_TYPE_UINT, original_network_id,
|
||||
"actual-transport-stream", G_TYPE_BOOLEAN, section->table_id == 0x42,
|
||||
NULL);
|
||||
|
||||
sdt_info_length = section->section_length - 8;
|
||||
g_value_init (&services, GST_TYPE_LIST);
|
||||
|
|
Loading…
Reference in a new issue