Browse Source

100l, revision 19728 added a bug that broke twinvq decoding. I forgot to

multiply the buffer size by the number of channels.

Originally committed as revision 19730 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Vitor Sessak 16 years ago
parent
commit
d3b60aa685
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/twinvq.c

+ 1
- 1
libavcodec/twinvq.c View File

@@ -860,7 +860,7 @@ static int twin_decode_frame(AVCodecContext * avctx, void *data,
}

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;



Loading…
Cancel
Save