# HG changeset patch # User vitor # Date 1251388145 0 # Node ID a04aca5587a7bbf8b05a87ac66b76637da6d0374 # Parent 7775f66276125b2c5a2a0bd314b9dfcaf06e924b 100l, revision 19728 added a bug that broke twinvq decoding. I forgot to multiply the buffer size by the number of channels. diff -r 7775f6627612 -r a04aca5587a7 twinvq.c --- a/twinvq.c Thu Aug 27 15:38:59 2009 +0000 +++ b/twinvq.c Thu Aug 27 15:49:05 2009 +0000 @@ -860,7 +860,7 @@ } tctx->dsp.vector_clipf(out, out, -32700./(1<<15), 32700./(1<<15), - mtab->size); + avctx->channels * mtab->size); *data_size = mtab->size*avctx->channels*4;