diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-02-20 00:43:22 -0500 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-03-25 15:55:02 -0400 |
commit | 1eaae7abb8f208fefb4e8b9e983e61b2499206a3 (patch) | |
tree | 136d33d22fd5f8dfe60201fdd7aebbffee77791f /libavcodec/vc1dec.c | |
parent | 8072345e9f86d88fbc4a15c17cb03f1e4701c9a5 (diff) | |
download | ffmpeg-1eaae7abb8f208fefb4e8b9e983e61b2499206a3.tar.gz |
intrax8: Reference the current AVCodecContext
It will be needed to initialize BlockDSP in the next commit.
Diffstat (limited to 'libavcodec/vc1dec.c')
-rw-r--r-- | libavcodec/vc1dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1dec.c b/libavcodec/vc1dec.c index 9e64a6bcd3..250d72ab14 100644 --- a/libavcodec/vc1dec.c +++ b/libavcodec/vc1dec.c @@ -379,7 +379,7 @@ av_cold int ff_vc1_decode_init_alloc_tables(VC1Context *v) } } - ret = ff_intrax8_common_init(&v->x8, &s->idsp, s); + ret = ff_intrax8_common_init(s->avctx, &v->x8, &s->idsp, s); if (ret < 0) goto error; |