Mercurial > libavcodec.hg
changeset 4529:a8082e1ed672 libavcodec
simplify
author | michael |
---|---|
date | Fri, 16 Feb 2007 21:25:22 +0000 |
parents | 33c6fe489f62 |
children | e47cc0486771 |
files | h264.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/h264.c Fri Feb 16 21:22:53 2007 +0000 +++ b/h264.c Fri Feb 16 21:25:22 2007 +0000 @@ -1039,7 +1039,7 @@ 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; }