diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-02-19 19:59:51 -0500 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-03-25 15:52:44 -0400 |
commit | 577393321c389ad2973bec6168a8045c94a9e099 (patch) | |
tree | 72905b9e214154d51a39d97a239caeab6777639f /libavcodec/vc1_block.c | |
parent | 68127e1bf8037a6e0acd6401cc8c5da950e3fa0a (diff) | |
download | ffmpeg-577393321c389ad2973bec6168a8045c94a9e099.tar.gz |
intrax8: Carry over the loopfilter value in ff_intrax8_decode_picture
Helps in decoupling this code from mpegvideo.
Diffstat (limited to 'libavcodec/vc1_block.c')
-rw-r--r-- | libavcodec/vc1_block.c | 3 |
1 files changed, 2 insertions, 1 deletions
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, |