summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/MPEG4Extractor.cpp
diff options
context:
space:
mode:
authorChih-Hung Hsieh <chh@google.com>2014-12-09 14:28:07 -0800
committerChih-Hung Hsieh <chh@google.com>2014-12-16 14:35:52 -0800
commite1b2ccf317301af42bb4b6631a3bcd7d8f519d00 (patch)
tree7b9ffd4e62498fcbf16d49dadbe014daada2f793 /media/libstagefright/MPEG4Extractor.cpp
parent09a1f34f2f45fe01b7dc6a15b15259ba61e47b5b (diff)
downloadframeworks_av-e1b2ccf317301af42bb4b6631a3bcd7d8f519d00.zip
frameworks_av-e1b2ccf317301af42bb4b6631a3bcd7d8f519d00.tar.gz
frameworks_av-e1b2ccf317301af42bb4b6631a3bcd7d8f519d00.tar.bz2
Fix wrong int argument of FOURCC.
Clang compiler reports error for aosp_x86-eng target: .../MPEG4Extractor.cpp:1538:14: error: case value is not a constant expression case FOURCC('\xA9', 'x', 'y', 'z'): ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ..../MPEG4Extractor.cpp:1538:14: note: left shift of negative value -87 Change-Id: I3ef1aa710cd1ce84ca46cdfbe37876bb9a1140bd
Diffstat (limited to 'media/libstagefright/MPEG4Extractor.cpp')
-rw-r--r--media/libstagefright/MPEG4Extractor.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/media/libstagefright/MPEG4Extractor.cpp b/media/libstagefright/MPEG4Extractor.cpp
index 087f345..64ab2f7 100644
--- a/media/libstagefright/MPEG4Extractor.cpp
+++ b/media/libstagefright/MPEG4Extractor.cpp
@@ -1533,13 +1533,13 @@ status_t MPEG4Extractor::parseChunk(off64_t *offset, int depth) {
break;
}
- // @xyz
- case FOURCC('\xA9', 'x', 'y', 'z'):
+ // ©xyz
+ case FOURCC(0xA9, 'x', 'y', 'z'):
{
*offset += chunk_size;
- // Best case the total data length inside "@xyz" box
- // would be 8, for instance "@xyz" + "\x00\x04\x15\xc7" + "0+0/",
+ // Best case the total data length inside "©xyz" box
+ // would be 8, for instance "©xyz" + "\x00\x04\x15\xc7" + "0+0/",
// where "\x00\x04" is the text string length with value = 4,
// "\0x15\xc7" is the language code = en, and "0+0" is a
// location (string) value with longitude = 0 and latitude = 0.