Oops! Fixed the fixed-point build

This commit is contained in:
Jean-Marc Valin 2010-05-06 20:15:27 -04:00
parent 811f21ab76
commit fbd82eb8f4

View file

@ -934,7 +934,7 @@ int celt_encode_float(CELTEncoder * restrict st, const float * pcm, float * opti
return CELT_BAD_ARG;
C = CHANNELS(st->channels);
N = st->block_size;
N = st->mode->nbShortMdcts*st->mode->shortMdctSize;
ALLOC(in, C*N, celt_int16);
for (j=0;j<C*N;j++)
@ -1602,7 +1602,7 @@ int celt_decode_float(CELTDecoder * restrict st, const unsigned char *data, int
return CELT_BAD_ARG;
C = CHANNELS(st->channels);
N = st->block_size;
N = st->mode->nbShortMdcts*st->mode->shortMdctSize;
ALLOC(out, C*N, celt_int16);
ret=celt_decode(st, data, len, out);