summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/codecs/aacdec/SoftAAC2.cpp
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2014-04-02 10:25:35 -0700
committerGlenn Kasten <gkasten@android.com>2014-04-02 11:45:51 -0700
commit66fe2e9ee30bcb4161bc487ec63d2ae4a05f4051 (patch)
tree4f996c27cafd9ef29e45ba1f3acb05210fbd16e6 /media/libstagefright/codecs/aacdec/SoftAAC2.cpp
parent08fce45fdb537e135868604522aba15461f516be (diff)
downloadframeworks_av-66fe2e9ee30bcb4161bc487ec63d2ae4a05f4051.zip
frameworks_av-66fe2e9ee30bcb4161bc487ec63d2ae4a05f4051.tar.gz
frameworks_av-66fe2e9ee30bcb4161bc487ec63d2ae4a05f4051.tar.bz2
64-bit: Correction to OMX_U32 and OMX_S32
Change-Id: I9c41bb34c35595ac19a7ab8faaacde8cb4fa9a15
Diffstat (limited to 'media/libstagefright/codecs/aacdec/SoftAAC2.cpp')
-rw-r--r--media/libstagefright/codecs/aacdec/SoftAAC2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/media/libstagefright/codecs/aacdec/SoftAAC2.cpp b/media/libstagefright/codecs/aacdec/SoftAAC2.cpp
index f842e27..d4b0de7 100644
--- a/media/libstagefright/codecs/aacdec/SoftAAC2.cpp
+++ b/media/libstagefright/codecs/aacdec/SoftAAC2.cpp
@@ -384,7 +384,7 @@ void SoftAAC2::onQueueFilled(OMX_U32 portIndex) {
bool signalError = false;
if (inHeader->nFilledLen < 7) {
ALOGE("Audio data too short to contain even the ADTS header. "
- "Got %ld bytes.", inHeader->nFilledLen);
+ "Got %d bytes.", inHeader->nFilledLen);
hexdump(adtsHeader, inHeader->nFilledLen);
signalError = true;
} else {
@@ -397,7 +397,7 @@ void SoftAAC2::onQueueFilled(OMX_U32 portIndex) {
if (inHeader->nFilledLen < aac_frame_length) {
ALOGE("Not enough audio data for the complete frame. "
- "Got %ld bytes, frame size according to the ADTS "
+ "Got %d bytes, frame size according to the ADTS "
"header is %u bytes.",
inHeader->nFilledLen, aac_frame_length);
hexdump(adtsHeader, inHeader->nFilledLen);