Commit 3d001256 authored by Michael Niedermayer's avatar Michael Niedermayer

cosmetic

Originally committed as revision 12858 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a1b914b2
......@@ -120,7 +120,8 @@ static void overlap_and_window(NellyMoserDecodeContext *s, float *state, float *
top = NELLY_BUF_LEN-1;
while (bot < NELLY_BUF_LEN) {
audio[bot] = a_in[bot]*sine_window[bot]+state[bot]*sine_window[top] + s->add_bias;
audio[bot] = a_in [bot]*sine_window[bot]
+state[bot]*sine_window[top] + s->add_bias;
bot++;
top--;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment