summaryrefslogtreecommitdiff
path: root/libavcodec/vc1_block.c
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2016-02-20 00:23:48 -0500
committerVittorio Giovara <vittorio.giovara@gmail.com>2016-03-25 15:54:29 -0400
commit8072345e9f86d88fbc4a15c17cb03f1e4701c9a5 (patch)
treed4c3df13c4691432cd53c6bc1f3614ba06656c36 /libavcodec/vc1_block.c
parent65f14128c4bcf8fcd9d3ba1e20b7a22057c9cfb0 (diff)
intrax8: Keep a reference to the GetBitContext reader
Helps in decoupling this code from mpegvideo.
Diffstat (limited to 'libavcodec/vc1_block.c')
-rw-r--r--libavcodec/vc1_block.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1_block.c b/libavcodec/vc1_block.c
index 0a4531a51a..919565ba37 100644
--- a/libavcodec/vc1_block.c
+++ b/libavcodec/vc1_block.c
@@ -3022,7 +3022,7 @@ void ff_vc1_decode_blocks(VC1Context *v)
v->s.esc3_level_length = 0;
if (v->x8_type) {
- ff_intrax8_decode_picture(&v->x8, &v->s.current_picture,
+ ff_intrax8_decode_picture(&v->x8, &v->s.current_picture, &v->s.gb,
2 * v->pq + v->halfpq, v->pq * !v->pquantizer,
v->s.loop_filter);