Commit 54dab661 authored by Michael Niedermayer's avatar Michael Niedermayer

Fix svq3 decoding, is_complex was not initialized.

Originally committed as revision 16184 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 4080e67c
......@@ -788,6 +788,7 @@ static int svq3_decode_init(AVCodecContext *avctx)
s->flags = avctx->flags;
s->flags2 = avctx->flags2;
s->unrestricted_mv = 1;
h->is_complex=1;
if (!s->context_initialized) {
s->width = avctx->width;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment