mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
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.
This commit is contained in:
parent
d9235cdb49
commit
5c341f0980
1 changed files with 1 additions and 1 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue