From 5c341f09802a611cc4a7ff4c5f25b15fe06e3806 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Wed, 13 Dec 2017 10:21:17 +0100 Subject: [PATCH] qtdemux: Don't set pared=True on underspecified audio/mpeg This *really* needs to go through a parser to figure out what the exact content type is. --- gst/isomp4/qtdemux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/isomp4/qtdemux.c b/gst/isomp4/qtdemux.c index 86b9adbecd..b38e88ecf3 100644 --- a/gst/isomp4/qtdemux.c +++ b/gst/isomp4/qtdemux.c @@ -13492,7 +13492,7 @@ gst_qtdemux_handle_esds (GstQTDemux * qtdemux, QtDemuxStream * stream, case 0x69: /* MPEG-2 BC audio */ case 0x6B: /* MPEG-1 audio */ caps = gst_caps_new_simple ("audio/mpeg", - "mpegversion", G_TYPE_INT, 1, "parsed", G_TYPE_BOOLEAN, TRUE, NULL); + "mpegversion", G_TYPE_INT, 1, NULL); codec_name = "MPEG-1 audio"; break; case 0x6A: /* MPEG-1 */