summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2009-09-01 12:41:19 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2009-09-01 12:56:12 +0200
commit3f35ef45846cb1ba657c5740693225a59acc563e (patch)
tree7b916ddc3a3ee0eaddbe39d3ea17a5b98a282a41
parentf5295555dbdc0c6c998b2446ce131abd1cd565e7 (diff)
mpegtsdemux: Stream type 0x81 is normal AC3, not EAC3
Not sure what the stream type for EAC3 is though. Fixes bug #593059.
-rw-r--r--gst/mpegdemux/gstmpegtsdemux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/mpegdemux/gstmpegtsdemux.c b/gst/mpegdemux/gstmpegtsdemux.c
index 0a6f28a59..2ab639bc4 100644
--- a/gst/mpegdemux/gstmpegtsdemux.c
+++ b/gst/mpegdemux/gstmpegtsdemux.c
@@ -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;