Mercurial > libavcodec.hg
changeset 8121:98f88000fcd4 libavcodec
Drop redundant check in RV3/4 deblock coefficients calculation
author | kostya |
---|---|
date | Sat, 08 Nov 2008 07:24:56 +0000 |
parents | 3d4e01bcd2a5 |
children | aec296246352 |
files | rv34.c |
diffstat | 1 files changed, 0 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/rv34.c Sat Nov 08 00:38:10 2008 +0000 +++ b/rv34.c Sat Nov 08 07:24:56 2008 +0000 @@ -1085,8 +1085,6 @@ 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))