From 577393321c389ad2973bec6168a8045c94a9e099 Mon Sep 17 00:00:00 2001 From: Vittorio Giovara Date: Fri, 19 Feb 2016 19:59:51 -0500 Subject: intrax8: Carry over the loopfilter value in ff_intrax8_decode_picture Helps in decoupling this code from mpegvideo. --- libavcodec/vc1_block.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libavcodec/vc1_block.c') diff --git a/libavcodec/vc1_block.c b/libavcodec/vc1_block.c index 8b46260ef2..4dab0ef2a8 100644 --- a/libavcodec/vc1_block.c +++ b/libavcodec/vc1_block.c @@ -3022,7 +3022,8 @@ void ff_vc1_decode_blocks(VC1Context *v) v->s.esc3_level_length = 0; if (v->x8_type) { - ff_intrax8_decode_picture(&v->x8, 2*v->pq + v->halfpq, v->pq * !v->pquantizer); + ff_intrax8_decode_picture(&v->x8, 2 * v->pq + v->halfpq, + v->pq * !v->pquantizer, v->s.loop_filter); ff_er_add_slice(&v->s.er, 0, 0, (v->s.mb_x >> 1) - 1, (v->s.mb_y >> 1) - 1, -- cgit v1.2.3