projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d229931
)
Drop redundant check in RV3/4 deblock coefficients calculation
author
Kostya Shishkov
<kostya.shishkov@gmail.com>
Sat, 8 Nov 2008 07:24:56 +0000
(07:24 +0000)
committer
Kostya Shishkov
<kostya.shishkov@gmail.com>
Sat, 8 Nov 2008 07:24:56 +0000
(07:24 +0000)
Originally committed as revision 15792 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/rv34.c
patch
|
blob
|
history
diff --git
a/libavcodec/rv34.c
b/libavcodec/rv34.c
index
cee84a0
..
867a346
100644
(file)
--- a/
libavcodec/rv34.c
+++ b/
libavcodec/rv34.c
@@
-1085,8
+1085,6
@@
static int rv34_set_deblock_coef(RV34DecContext *r)
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))