summaryrefslogtreecommitdiffstats
path: root/media/libstagefright
diff options
context:
space:
mode:
authorJessica Wagantall <jwagantall@cyngn.com>2016-06-07 15:27:51 -0700
committerJessica Wagantall <jwagantall@cyngn.com>2016-06-07 15:27:51 -0700
commitfdc7d1f59c2da25246ec1dce7a6bbc32fcd6525d (patch)
tree10984dea8428c0b23a277524fe131a47e0427985 /media/libstagefright
parentb3fbce13d6a0c30012e069c4a2131407beb31ab7 (diff)
downloadframeworks_av-fdc7d1f59c2da25246ec1dce7a6bbc32fcd6525d.zip
frameworks_av-fdc7d1f59c2da25246ec1dce7a6bbc32fcd6525d.tar.gz
frameworks_av-fdc7d1f59c2da25246ec1dce7a6bbc32fcd6525d.tar.bz2
Fixing ALOGE message in commit ad40e57890f81a3cf436c5f06da66396010bd9e5
Change-Id: Icdfe4662ff6b53cff53142706bbd5ade1636fb27
Diffstat (limited to 'media/libstagefright')
-rw-r--r--media/libstagefright/codecs/mp3dec/SoftMP3.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/media/libstagefright/codecs/mp3dec/SoftMP3.cpp b/media/libstagefright/codecs/mp3dec/SoftMP3.cpp
index ba13338..cd4b0ba 100644
--- a/media/libstagefright/codecs/mp3dec/SoftMP3.cpp
+++ b/media/libstagefright/codecs/mp3dec/SoftMP3.cpp
@@ -279,7 +279,7 @@ void SoftMP3::onQueueFilled(OMX_U32 /* portIndex */) {
mConfig->outputFrameSize = kOutputBufferSize / sizeof(int16_t);
if ((int32)outHeader->nAllocLen < mConfig->outputFrameSize) {
- ALOGE("input buffer too small: got %lu, expected %u",
+ ALOGE("input buffer too small: got %u, expected %u",
outHeader->nAllocLen, mConfig->outputFrameSize);
android_errorWriteLog(0x534e4554, "27793371");
notify(OMX_EventError, OMX_ErrorUndefined, OUTPUT_BUFFER_TOO_SMALL, NULL);