mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-02 20:35:37 +02:00
avcodec/vc1: fix condition guarding overlap filter on I picture
The overlap filter needs to run when PQUANT is 9 or higher, irrespective of CONDOVER. Signed-off-by: Jerome Borsboom <jerome.borsboom@carpalis.nl>
This commit is contained in:
parent
6b453a81bc
commit
1cf6129d13
@ -2726,7 +2726,7 @@ static void vc1_decode_i_blocks_adv(VC1Context *v)
|
||||
v->vc1dsp.vc1_inv_trans_8x8(block[k]);
|
||||
}
|
||||
|
||||
if (v->overlap && v->condover != CONDOVER_NONE)
|
||||
if (v->overlap && (v->pq >= 9 || v->condover != CONDOVER_NONE))
|
||||
ff_vc1_i_overlap_filter(v);
|
||||
vc1_put_blocks_clamped(v, 1);
|
||||
if (v->s.loop_filter)
|
||||
|
Loading…
x
Reference in New Issue
Block a user