summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/codecs/gsm/dec/SoftGSM.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/gsm/dec/SoftGSM.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/gsm/dec/SoftGSM.cpp')
-rw-r--r--media/libstagefright/codecs/gsm/dec/SoftGSM.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/media/libstagefright/codecs/gsm/dec/SoftGSM.cpp b/media/libstagefright/codecs/gsm/dec/SoftGSM.cpp
index 00e0c85..eef495f 100644
--- a/media/libstagefright/codecs/gsm/dec/SoftGSM.cpp
+++ b/media/libstagefright/codecs/gsm/dec/SoftGSM.cpp
@@ -202,13 +202,13 @@ void SoftGSM::onQueueFilled(OMX_U32 portIndex) {
}
if (inHeader->nFilledLen > kMaxNumSamplesPerFrame) {
- ALOGE("input buffer too large (%ld).", inHeader->nFilledLen);
+ ALOGE("input buffer too large (%d).", inHeader->nFilledLen);
notify(OMX_EventError, OMX_ErrorUndefined, 0, NULL);
mSignalledError = true;
}
if(((inHeader->nFilledLen / 65) * 65) != inHeader->nFilledLen) {
- ALOGE("input buffer not multiple of 65 (%ld).", inHeader->nFilledLen);
+ ALOGE("input buffer not multiple of 65 (%d).", inHeader->nFilledLen);
notify(OMX_EventError, OMX_ErrorUndefined, 0, NULL);
mSignalledError = true;
}