Skip to content
Snippets Groups Projects
Commit 3d001256 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

cosmetic

Originally committed as revision 12858 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a1b914b2
No related branches found
No related tags found
No related merge requests found
...@@ -120,7 +120,8 @@ static void overlap_and_window(NellyMoserDecodeContext *s, float *state, float * ...@@ -120,7 +120,8 @@ static void overlap_and_window(NellyMoserDecodeContext *s, float *state, float *
top = NELLY_BUF_LEN-1; top = NELLY_BUF_LEN-1;
while (bot < NELLY_BUF_LEN) { 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++; bot++;
top--; top--;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment