[SCM] libav/experimental: simplify

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:56:27 UTC 2013


The following commit has been merged in the experimental branch:
commit 43ff07145653a330ee518c52216f93e5c62b26b3
Author: Michael Niedermayer <michaelni at gmx.at>
Date:   Fri Feb 16 21:25:22 2007 +0000

    simplify
    
    Originally committed as revision 7995 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 5815720..8ae2752 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;
     }

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list