summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Nelissen <marcone@google.com>2017-02-14 23:08:32 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-02-14 23:08:32 +0000
commit1d999b7cdfb58fcbf0de2210f21c3a5f8ca5cefb (patch)
tree695e55fe33847420a7162a966bd4fa88d7392643
parentf837a7796bb4ad47016a1dbe7f7fc35df94f39a4 (diff)
parent834462327b5b2134ceae9c31924b32385a74ff86 (diff)
downloadandroid_external_libavc-1d999b7cdfb58fcbf0de2210f21c3a5f8ca5cefb.tar.gz
android_external_libavc-1d999b7cdfb58fcbf0de2210f21c3a5f8ca5cefb.tar.bz2
android_external_libavc-1d999b7cdfb58fcbf0de2210f21c3a5f8ca5cefb.zip
resolve merge conflicts of 3654ad0 to mnc-dr-dev am: 37345554fe am: 33d9d00a3c am: 858542d83e am: 2e4b53cfb4 am: 7c50684ef0
am: 834462327b Change-Id: I14a897695081fad3099ca3e49abf1af8f8ac5cff
-rw-r--r--decoder/ih264d_parse_headers.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/decoder/ih264d_parse_headers.c b/decoder/ih264d_parse_headers.c
index 1403408..0bc4c3f 100644
--- a/decoder/ih264d_parse_headers.c
+++ b/decoder/ih264d_parse_headers.c
@@ -914,6 +914,15 @@ WORD32 ih264d_parse_sps(dec_struct_t *ps_dec, dec_bit_stream_t *ps_bitstrm)
return IVD_STREAM_WIDTH_HEIGHT_NOT_SUPPORTED;
}
+ /* If MBAff is enabled, decoder support is limited to streams with
+ * width less than half of H264_MAX_FRAME_WIDTH.
+ * In case of MBAff decoder processes two rows at a time
+ */
+ if((u2_pic_wd << ps_seq->u1_mb_aff_flag) > H264_MAX_FRAME_WIDTH)
+ {
+ return IVD_STREAM_WIDTH_HEIGHT_NOT_SUPPORTED;
+ }
+
ps_dec->u2_disp_height = i4_cropped_ht;
ps_dec->u2_disp_width = i4_cropped_wd;