summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/codecs
diff options
context:
space:
mode:
authorRonghua Wu <ronghuawu@google.com>2015-01-29 17:20:56 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-01-29 17:20:56 +0000
commit5ba2e2cbb6ae3d470bf3031507ea938be6066ed7 (patch)
tree0993879987b6e131fca608a69d1c436d8e075a29 /media/libstagefright/codecs
parentdee9d798a3434bde96852c60953cb531bf9fd18a (diff)
parent2588b453fc170f0691d5c503dab2285fef6976c2 (diff)
downloadframeworks_av-5ba2e2cbb6ae3d470bf3031507ea938be6066ed7.zip
frameworks_av-5ba2e2cbb6ae3d470bf3031507ea938be6066ed7.tar.gz
frameworks_av-5ba2e2cbb6ae3d470bf3031507ea938be6066ed7.tar.bz2
am 2588b453: am 29e609a8: am 628d4ea1: Merge "stagefright: do not reject SPL5 files outright in SoftMpeg4 decoder" into lmp-mr1-dev
* commit '2588b453fc170f0691d5c503dab2285fef6976c2': stagefright: do not reject SPL5 files outright in SoftMpeg4 decoder
Diffstat (limited to 'media/libstagefright/codecs')
-rw-r--r--media/libstagefright/codecs/m4v_h263/dec/src/vop.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/media/libstagefright/codecs/m4v_h263/dec/src/vop.cpp b/media/libstagefright/codecs/m4v_h263/dec/src/vop.cpp
index 8e8e78a..60c79a6 100644
--- a/media/libstagefright/codecs/m4v_h263/dec/src/vop.cpp
+++ b/media/libstagefright/codecs/m4v_h263/dec/src/vop.cpp
@@ -118,10 +118,10 @@ PV_STATUS DecodeVOLHeader(VideoDecData *video, int layer)
{
/* support SPL0-3 & SSPL0-2 */
if (tmpvar != 0x01 && tmpvar != 0x02 && tmpvar != 0x03 && tmpvar != 0x08 &&
- /* While not technically supported, try to decode SPL4 files as well. */
+ /* While not technically supported, try to decode SPL4&SPL5 files as well. */
/* We'll fail later if the size is too large. This is to allow playback of */
/* some <=CIF files generated by other encoders. */
- tmpvar != 0x04 &&
+ tmpvar != 0x04 && tmpvar != 0x05 &&
tmpvar != 0x10 && tmpvar != 0x11 && tmpvar != 0x12 &&
tmpvar != 0x21 && tmpvar != 0x22 && /* Core Profile Levels */
tmpvar != 0xA1 && tmpvar != 0xA2 && tmpvar != 0xA3 &&