mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-28 20:53:54 +02:00
avcodec/vc1: re-implement and expand VC-1 loop filtering
The existing implementation did loop filtering for progressive frames only. This rewritten version implements loop filtering for all applicable frame types for both progessive and frame/field-interlace. Signed-off-by: Jerome Borsboom <jerome.borsboom@carpalis.nl>
This commit is contained in:
parent
20de893b3b
commit
ded52f6e36
@ -428,6 +428,10 @@ void ff_vc1_smooth_overlap_filter_iblk(VC1Context *v);
|
||||
void ff_vc1_i_overlap_filter(VC1Context *v);
|
||||
void ff_vc1_p_overlap_filter(VC1Context *v);
|
||||
void ff_vc1_apply_p_loop_filter(VC1Context *v);
|
||||
void ff_vc1_i_loop_filter(VC1Context *v);
|
||||
void ff_vc1_p_loop_filter(VC1Context *v);
|
||||
void ff_vc1_p_intfr_loop_filter(VC1Context *v);
|
||||
void ff_vc1_b_intfi_loop_filter(VC1Context *v);
|
||||
|
||||
void ff_vc1_mc_1mv(VC1Context *v, int dir);
|
||||
void ff_vc1_mc_4mv_luma(VC1Context *v, int n, int dir, int avg);
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user