From: Luis de Bethencourt Date: Wed, 6 Jul 2016 11:44:10 +0000 (+0100) Subject: qtdemux: fix AAC codec_data values X-Git-Tag: 1.19.3~509^2~2655 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a85dbfc2467a35d9b1e31e78e5b4bd8a563bbe29;p=platform%2Fupstream%2Fgstreamer.git qtdemux: fix AAC codec_data values As seen in the parent switch for object_type_id, the 4 possible values are 0x40, 0x66, 0x67 and 0x68. Fixing the nested switch to match these values. Looks like it was a typo making them decimal instead of hexadecimal. CID 1363328 --- diff --git a/gst/isomp4/qtdemux.c b/gst/isomp4/qtdemux.c index be9b4e7296..760c683085 100644 --- a/gst/isomp4/qtdemux.c +++ b/gst/isomp4/qtdemux.c @@ -12693,11 +12693,11 @@ gst_qtdemux_handle_esds (GstQTDemux * qtdemux, QtDemuxStream * stream, profile_str = "main"; profile = 0; break; - case 67: + case 0x67: profile_str = "lc"; profile = 1; break; - case 68: + case 0x68: profile_str = "ssr"; profile = 2; break;