Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-06-21 21:51:30 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-06-21 22:48:07 +0400
commit2005fddcbb4e18e8f7c34326e40609e4a2d83c31 (patch)
treeb5ed7c714b7056ccf796575d980671e2a44c5535
parent7cc4115dd6d13cfe69ae22c14e09292ab0e219b8 (diff)
h264/ff_h264_check_intra_pred_mode: fix input value check
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/h264.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 233a7c844f..613d230482 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -481,7 +481,7 @@ 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 };
- if (mode > 6U) {
+ if (mode > 3U) {
av_log(h->avctx, AV_LOG_ERROR,
"out of range intra chroma pred mode at %d %d\n",
h->mb_x, h->mb_y);