diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-02-20 01:57:47 -0500 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-03-29 13:41:09 +0200 |
commit | 9fa888c02801fff2e8817c24068f5296bbe60000 (patch) | |
tree | bcb082bebbd10485d70d5e95a80534684134367c /libavcodec/wmv2dec.c | |
parent | c2084ffcbfc11d1b6ed3a4a0df9cafd56fbb896f (diff) | |
download | ffmpeg-9fa888c02801fff2e8817c24068f5296bbe60000.tar.gz |
intrax8: Keep a reference to the decoder blocks
Diffstat (limited to 'libavcodec/wmv2dec.c')
-rw-r--r-- | libavcodec/wmv2dec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/wmv2dec.c b/libavcodec/wmv2dec.c index 7bf838807e..f01a743b68 100644 --- a/libavcodec/wmv2dec.c +++ b/libavcodec/wmv2dec.c @@ -475,6 +475,7 @@ static av_cold int wmv2_decode_init(AVCodecContext *avctx) ff_wmv2_common_init(w); return ff_intrax8_common_init(avctx, &w->x8, &w->s.idsp, + w->s.block, w->s.block_last_index, w->s.mb_width, w->s.mb_height, &w->s); } |