From: Michael Niedermayer Date: Fri, 21 Jun 2013 17:39:45 +0000 (+0200) Subject: h264: fix size of arrays in ff_h264_check_intra_pred_mode() X-Git-Tag: android-x86-4.4-r1~2769 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=d6a33f5d20b6ef2eae2cbb959b001cb125a564b7;p=android-x86%2Fexternal-ffmpeg.git h264: fix size of arrays in ff_h264_check_intra_pred_mode() Signed-off-by: Michael Niedermayer --- diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 613d230482..bb105eeeb4 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -478,8 +478,8 @@ int ff_h264_check_intra4x4_pred_mode(H264Context *h) */ int ff_h264_check_intra_pred_mode(H264Context *h, int mode, int is_chroma) { - static const int8_t top[7] = { LEFT_DC_PRED8x8, 1, -1, -1 }; - static const int8_t left[7] = { TOP_DC_PRED8x8, -1, 2, -1, DC_128_PRED8x8 }; + static const int8_t top[4] = { LEFT_DC_PRED8x8, 1, -1, -1 }; + static const int8_t left[5] = { TOP_DC_PRED8x8, -1, 2, -1, DC_128_PRED8x8 }; if (mode > 3U) { av_log(h->avctx, AV_LOG_ERROR,