diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-02-20 01:09:40 -0500 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-03-29 13:41:09 +0200 |
commit | d0540fd02171a6233d2016b199d013299debf7e3 (patch) | |
tree | 6e83ffaa460ef2204ae3d972d1e98b121c81bf06 /libavcodec/vc1dec.c | |
parent | 9f4d99138df434a73b097c997fb4cafc65f4ff54 (diff) | |
download | ffmpeg-d0540fd02171a6233d2016b199d013299debf7e3.tar.gz |
intrax8: Pass macroblock size to ff_intrax8_common_init
Helps in decoupling this code from mpegvideo.
Diffstat (limited to 'libavcodec/vc1dec.c')
-rw-r--r-- | libavcodec/vc1dec.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/vc1dec.c b/libavcodec/vc1dec.c index 250d72ab14..d1a99d7a94 100644 --- a/libavcodec/vc1dec.c +++ b/libavcodec/vc1dec.c @@ -379,7 +379,9 @@ av_cold int ff_vc1_decode_init_alloc_tables(VC1Context *v) } } - ret = ff_intrax8_common_init(s->avctx, &v->x8, &s->idsp, s); + ret = ff_intrax8_common_init(s->avctx, &v->x8, &s->idsp, + s->mb_width, s->mb_height, + s); if (ret < 0) goto error; |