summaryrefslogtreecommitdiffstats
path: root/media
diff options
context:
space:
mode:
authorAndreas Huber <andih@google.com>2011-02-08 11:04:08 -0800
committerAndreas Huber <andih@google.com>2011-02-08 11:04:08 -0800
commit576c3f65d7ad166c21ef09342a2a321e57666af4 (patch)
tree0b1e70028790e1bd0a419eb8951e14e3acf3df7d /media
parent8473bb556421ac08f4e03abd5d149852114c9238 (diff)
downloadframeworks_av-576c3f65d7ad166c21ef09342a2a321e57666af4.zip
frameworks_av-576c3f65d7ad166c21ef09342a2a321e57666af4.tar.gz
frameworks_av-576c3f65d7ad166c21ef09342a2a321e57666af4.tar.bz2
Remove one log message from the VPXDecoder
related-to-bug: 3402216 The VPX format supports "internal-only" frames that are referenced by future content but never actually displayed, so this is a perfectly valid scenario that doesn't require a log message. Change-Id: I8330bfdfefcdf4ab66ae6d2b59b99fd9b89350df
Diffstat (limited to 'media')
-rw-r--r--media/libstagefright/codecs/on2/dec/VPXDecoder.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/media/libstagefright/codecs/on2/dec/VPXDecoder.cpp b/media/libstagefright/codecs/on2/dec/VPXDecoder.cpp
index 9433178..489e5ad 100644
--- a/media/libstagefright/codecs/on2/dec/VPXDecoder.cpp
+++ b/media/libstagefright/codecs/on2/dec/VPXDecoder.cpp
@@ -205,7 +205,9 @@ status_t VPXDecoder::read(
vpx_image_t *img = vpx_codec_get_frame((vpx_codec_ctx_t *)mCtx, &iter);
if (img == NULL) {
- LOGI("on2 decoder did not return a frame.");
+ // The VPX format supports "internal-only" frames that are
+ // referenced by future content but never actually displayed, so
+ // this is a perfectly valid scenario.
*out = new MediaBuffer(0);
return OK;