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:
Sebastian Dröge 2009-09-01 12:41:19 +02:00
parent f5295555db
commit 3f35ef4584

View file

@ -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;