mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-06 08:09:56 +00:00
mpegtsdemux: Stream type 0x81 is normal AC3, not EAC3
Not sure what the stream type for EAC3 is though. Fixes bug #593059.
This commit is contained in:
parent
f5295555db
commit
3f35ef4584
1 changed files with 1 additions and 1 deletions
|
@ -671,7 +671,7 @@ gst_mpegts_demux_fill_stream (GstMpegTSStream * stream, guint8 id,
|
|||
case ST_BD_AUDIO_AC3:
|
||||
template = klass->audio_template;
|
||||
name = g_strdup_printf ("audio_%04x", stream->PID);
|
||||
caps = gst_caps_new_simple ("audio/x-eac3", NULL);
|
||||
caps = gst_caps_new_simple ("audio/x-ac3", NULL);
|
||||
break;
|
||||
case ST_PS_AUDIO_DTS:
|
||||
template = klass->audio_template;
|
||||
|
|
Loading…
Reference in a new issue