diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-02-16 21:25:22 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-02-16 21:25:22 +0000 |
commit | 43ff07145653a330ee518c52216f93e5c62b26b3 (patch) | |
tree | 7df0a8ec01307313f1e4a8f7e45ab13127e37697 | |
parent | 2a115873afb16ed421f2d8eeacfa3d828b64af7f (diff) | |
download | ffmpeg-43ff07145653a330ee518c52216f93e5c62b26b3.tar.gz |
simplify
Originally committed as revision 7995 to svn://svn.ffmpeg.org/ffmpeg/trunk
-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 581572031f..8ae2752390 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -1039,7 +1039,7 @@ static inline int check_intra_pred_mode(H264Context *h, int mode){ 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 < 0 || mode > 6) { + if(mode > 6U) { 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); return -1; } |