# HG changeset patch # User michael # Date 1229485308 0 # Node ID 4a01f7144da547512d407bd0e6d7e9e87766c77f # Parent 7c36f4ce172c1f379dfe7970b0218c68cb314195 Fix svq3 decoding, is_complex was not initialized. diff -r 7c36f4ce172c -r 4a01f7144da5 svq3.c --- a/svq3.c Wed Dec 17 02:53:03 2008 +0000 +++ b/svq3.c Wed Dec 17 03:41:48 2008 +0000 @@ -788,6 +788,7 @@ s->flags = avctx->flags; s->flags2 = avctx->flags2; s->unrestricted_mv = 1; + h->is_complex=1; if (!s->context_initialized) { s->width = avctx->width;