# HG changeset patch # User pross # Date 1268304754 0 # Node ID 908cc63498ecf99f82c32c7fe3453c5dca2bc3c5 # Parent a385968f8fb0d908bcf7aacf6d067d874b637430 Make binkaudio work with ff_float_to_int16_interleave_c (martin at martin dot st) diff -r a385968f8fb0 -r 908cc63498ec binkaudio.c --- a/binkaudio.c Thu Mar 11 02:32:05 2010 +0000 +++ b/binkaudio.c Thu Mar 11 10:52:34 2010 +0000 @@ -222,6 +222,11 @@ ff_rdft_calc(&s->trans.rdft, coeffs); } + if (s->dsp.float_to_int16_interleave == ff_float_to_int16_interleave_c) { + for (i = 0; i < s->channels; i++) + for (j = 0; j < s->frame_len; j++) + s->coeffs_ptr[i][j] = 385.0 + s->coeffs_ptr[i][j]*(1.0/32767.0); + } s->dsp.float_to_int16_interleave(out, (const float **)s->coeffs_ptr, s->frame_len, s->channels); if (!s->first) {