Skip to content

Commit

Permalink
qtdemux: Don't set pared=True on underspecified audio/mpeg
Browse files Browse the repository at this point in the history
This *really* needs to go through a parser to figure out what the
exact content type is.
  • Loading branch information
bilboed committed Dec 13, 2017
1 parent d9235cd commit 5c341f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gst/isomp4/qtdemux.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit 5c341f0

Please sign in to comment.