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