[FFmpeg-cvslog] r15792 - trunk/libavcodec/rv34.c

kostya subversion
Sat Nov 8 08:24:56 CET 2008


Author: kostya
Date: Sat Nov  8 08:24:56 2008
New Revision: 15792

Log:
Drop redundant check in RV3/4 deblock coefficients calculation

Modified:
   trunk/libavcodec/rv34.c

Modified: trunk/libavcodec/rv34.c
==============================================================================
--- trunk/libavcodec/rv34.c	(original)
+++ trunk/libavcodec/rv34.c	Sat Nov  8 08:24:56 2008
@@ -1085,8 +1085,6 @@ static int rv34_set_deblock_coef(RV34Dec
     int mvmask = 0, i, j;
     int midx = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
     int16_t (*motion_val)[2] = s->current_picture_ptr->motion_val[0][midx];
-    if(s->pict_type == FF_I_TYPE)
-        return 0;
     for(j = 0; j < 16; j += 8){
         for(i = 0; i < 2; i++){
             if(is_mv_diff_gt_3(motion_val + i, 1))




More information about the ffmpeg-cvslog mailing list