summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/codecs/m4v_h263/dec/SoftMPEG4.cpp
diff options
context:
space:
mode:
authorAndreas Huber <andih@google.com>2011-11-09 10:03:07 -0800
committerAndreas Huber <andih@google.com>2011-11-09 10:03:07 -0800
commit0029faf8f4efbca3844c4174b75d46c432f8f272 (patch)
tree9b59633ede7c8f7a91bb8a56afd411567287cb01 /media/libstagefright/codecs/m4v_h263/dec/SoftMPEG4.cpp
parent936a981ba15d528a023311aa32f46446813551d9 (diff)
downloadframeworks_av-0029faf8f4efbca3844c4174b75d46c432f8f272.zip
frameworks_av-0029faf8f4efbca3844c4174b75d46c432f8f272.tar.gz
frameworks_av-0029faf8f4efbca3844c4174b75d46c432f8f272.tar.bz2
Don't believe the PV decoder's lies...
Change-Id: I97391235255afb8a4890a4ff52d4e8e9ca954f27
Diffstat (limited to 'media/libstagefright/codecs/m4v_h263/dec/SoftMPEG4.cpp')
-rw-r--r--media/libstagefright/codecs/m4v_h263/dec/SoftMPEG4.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/media/libstagefright/codecs/m4v_h263/dec/SoftMPEG4.cpp b/media/libstagefright/codecs/m4v_h263/dec/SoftMPEG4.cpp
index ddced5f..aa07e57 100644
--- a/media/libstagefright/codecs/m4v_h263/dec/SoftMPEG4.cpp
+++ b/media/libstagefright/codecs/m4v_h263/dec/SoftMPEG4.cpp
@@ -421,8 +421,13 @@ void SoftMPEG4::onQueueFilled(OMX_U32 portIndex) {
int32_t bufferSize = inHeader->nFilledLen;
+ // The PV decoder is lying to us, sometimes it'll claim to only have
+ // consumed a subset of the buffer when it clearly consumed all of it.
+ // ignore whatever it says...
+ int32_t tmp = bufferSize;
+
if (PVDecodeVideoFrame(
- mHandle, &bitstream, &timestamp, &bufferSize,
+ mHandle, &bitstream, &timestamp, &tmp,
&useExtTimestamp,
outHeader->pBuffer) != PV_TRUE) {
LOGE("failed to decode video frame.");