diff options
author | Michael Niedermayer <[email protected]> | 2013-06-21 19:51:30 +0200 |
---|---|---|
committer | Michael Niedermayer <[email protected]> | 2014-04-21 15:17:04 +0200 |
commit | 40e6c148f5dc668c6104cfcca5b25a8a8f2c459b (patch) | |
tree | a38659a4aef699fab2029040ef10dc54c4d10bfa | |
parent | 9081b4ddddeea2c01036115a2037fb75f279be2a (diff) |
h264/ff_h264_check_intra_pred_mode: fix input value check
Signed-off-by: Michael Niedermayer <[email protected]>
(cherry picked from commit 2005fddcbb4e18e8f7c34326e40609e4a2d83c31)
Conflicts:
libavcodec/h264.c
Merged-by: Michael Niedermayer <[email protected]>
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index fd8a878ee2..9f4a61cafa 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -144,7 +144,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->s.avctx, AV_LOG_ERROR, "out of range intra chroma pred mode at %d %d\n", s->mb_x, s->mb_y); |