mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
mpegtsdemux: Add support for the two DTS HD stream types
Fixes bug #614259.
This commit is contained in:
parent
d7ab75abb8
commit
074d20cf99
2 changed files with 3 additions and 0 deletions
|
@ -178,6 +178,7 @@
|
|||
#define ST_BD_AUDIO_AC3_TRUE_HD 0x83
|
||||
#define ST_BD_AUDIO_AC3_PLUS 0x84
|
||||
#define ST_BD_AUDIO_DTS_HD 0x85
|
||||
#define ST_BD_AUDIO_DTS_HD_MASTER_AUDIO 0x86
|
||||
#define ST_BD_AUDIO_EAC3 0x87
|
||||
#define ST_BD_PGS_SUBPICTURE 0x90
|
||||
#define ST_BD_IGS 0x91
|
||||
|
|
|
@ -767,6 +767,8 @@ gst_mpegts_demux_fill_stream (GstMpegTSStream * stream, guint8 id,
|
|||
caps = gst_caps_new_simple ("audio/x-eac3", NULL);
|
||||
break;
|
||||
case ST_PS_AUDIO_DTS:
|
||||
case ST_BD_AUDIO_DTS_HD:
|
||||
case ST_BD_AUDIO_DTS_HD_MASTER_AUDIO:
|
||||
template = klass->audio_template;
|
||||
name = g_strdup_printf ("audio_%04x", stream->PID);
|
||||
caps = gst_caps_new_simple ("audio/x-dts", NULL);
|
||||
|
|
Loading…
Reference in a new issue