summaryrefslogtreecommitdiff
path: root/libavcodec/svq3.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-12-17 03:41:48 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-12-17 03:41:48 +0000
commit54dab661743b7d345552e14d142b326e9bcf2496 (patch)
tree0e7eef73252597e4e1ceb0edebddb32ef2db5073 /libavcodec/svq3.c
parent4080e67c8e4528684b44e6cf5d0bc4ee4053f87a (diff)
Fix svq3 decoding, is_complex was not initialized.
Originally committed as revision 16184 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/svq3.c')
-rw-r--r--libavcodec/svq3.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c
index 499d11d6bf..f6fe071657 100644
--- a/libavcodec/svq3.c
+++ b/libavcodec/svq3.c
@@ -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;