projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
c00dc6f
)
qtdemux: fix AAC codec_data values
author
Luis de Bethencourt
<luisbg@osg.samsung.com>
Wed, 6 Jul 2016 11:44:10 +0000
(12:44 +0100)
committer
Luis de Bethencourt
<luisbg@osg.samsung.com>
Wed, 6 Jul 2016 11:47:18 +0000
(12:47 +0100)
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
gst/isomp4/qtdemux.c
patch
|
blob
|
history
diff --git
a/gst/isomp4/qtdemux.c
b/gst/isomp4/qtdemux.c
index be9b4e7296f7a95000a752fdf9dc5b5643341680..760c683085cac2723849a1ff05fbcac86f6b7809 100644
(file)
--- 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;
profile_str = "main";
profile = 0;
break;
- case 67:
+ case
0x
67:
profile_str = "lc";
profile = 1;
break;
profile_str = "lc";
profile = 1;
break;
- case 68:
+ case
0x
68:
profile_str = "ssr";
profile = 2;
break;
profile_str = "ssr";
profile = 2;
break;