mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-10-12 04:01:44 +08:00
Fix h264_loop_filter_strength_mmx2() so it works with PAFF.
fixed at least: CVFI1_Sony_D.jsv CVFI1_SVA_C.264 MR6_BT_B.h264 Originally committed as revision 14310 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -6495,7 +6495,7 @@ static void filter_mb_fast( H264Context *h, int mb_x, int mb_y, uint8_t *img_y,
|
||||
int step = IS_8x8DCT(mb_type) ? 2 : 1;
|
||||
edges = (mb_type & MB_TYPE_16x16) && !(h->cbp & 15) ? 1 : 4;
|
||||
s->dsp.h264_loop_filter_strength( bS, h->non_zero_count_cache, h->ref_cache, h->mv_cache,
|
||||
(h->slice_type == FF_B_TYPE), edges, step, mask_edge0, mask_edge1 );
|
||||
(h->slice_type == FF_B_TYPE), edges, step, mask_edge0, mask_edge1, FIELD_PICTURE);
|
||||
}
|
||||
if( IS_INTRA(s->current_picture.mb_type[mb_xy-1]) )
|
||||
bSv[0][0] = 0x0004000400040004ULL;
|
||||
|
Reference in New Issue
Block a user