mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
avcodec/vc1_loopfilter: Factor duplicate code in vc1_b_h_intfi_loop_filter()
Fixes: CID1435168 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 63ecce9ba87867b21a7cdcd677bb268c0d807db1) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
8c378a78c9
commit
45b2c1f810
@ -1125,10 +1125,7 @@ static av_always_inline void vc1_b_h_intfi_loop_filter(VC1Context *v, uint8_t *d
|
||||
dst = dest + (block_num & 2) * 4 * s->linesize + (block_num & 1) * 8;
|
||||
|
||||
if (!(flags & RIGHT_EDGE) || !(block_num & 5)) {
|
||||
if (block_num > 3)
|
||||
v->vc1dsp.vc1_h_loop_filter8(dst + 8, linesize, pq);
|
||||
else
|
||||
v->vc1dsp.vc1_h_loop_filter8(dst + 8, linesize, pq);
|
||||
v->vc1dsp.vc1_h_loop_filter8(dst + 8, linesize, pq);
|
||||
}
|
||||
|
||||
tt = ttblk[0] >> (block_num * 4) & 0xf;
|
||||
|
Loading…
x
Reference in New Issue
Block a user