Fix svq3 decoding, is_complex was not initialized.
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 17 Dec 2008 03:41:48 +0000 (03:41 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 17 Dec 2008 03:41:48 +0000 (03:41 +0000)
Originally committed as revision 16184 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/svq3.c

index 499d11d..f6fe071 100644 (file)
@@ -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;