diff options
author | Thiago Santos <ts.santos@sisa.samsung.com> | 2014-05-28 16:34:08 -0300 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2014-05-29 10:38:00 +0200 |
commit | fa1eb09520058d3c42d0420ca88cb6cd70d602a3 (patch) | |
tree | dadef930d9e0113a8d29fd8f3082b700c14ba974 /tests/examples | |
parent | 1cab60b7134f9ec2455a28fabefd938bd22ca7f1 (diff) | |
download | gstreamer-plugins-bad-fa1eb09520058d3c42d0420ca88cb6cd70d602a3.tar.gz |
mpegts: atsc: add missing field to ETT table
Set the subtable_extension as ett_table_id_extension
for ETT tables as it is used by it
https://bugzilla.gnome.org/show_bug.cgi?id=730435
Diffstat (limited to 'tests/examples')
-rw-r--r-- | tests/examples/mpegts/ts-parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/examples/mpegts/ts-parser.c b/tests/examples/mpegts/ts-parser.c index 173bcb4ba..bf8c98cf6 100644 --- a/tests/examples/mpegts/ts-parser.c +++ b/tests/examples/mpegts/ts-parser.c @@ -666,7 +666,7 @@ dump_ett (GstMpegTsSection * section) g_assert (ett); - g_printf (" service_id : 0x%04x\n", section->subtable_extension); + g_printf (" ett_table_id_ext : 0x%04x\n", ett->ett_table_id_extension); g_printf (" protocol_version : 0x%04x\n", ett->protocol_version); g_printf (" etm_id : 0x%04x\n", ett->etm_id); |