summaryrefslogtreecommitdiff
path: root/libavcodec/nellymoserdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-04-16 15:33:09 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-04-16 15:33:09 +0000
commit3d00125645dca5c6a3db2117947c0057c07c5571 (patch)
tree1c9ab11546a9ab59f9e74cfd8905f7e24d7824ed /libavcodec/nellymoserdec.c
parenta1b914b20dfbf3f8b2854afe78d22d32b1111640 (diff)
cosmetic
Originally committed as revision 12858 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/nellymoserdec.c')
-rw-r--r--libavcodec/nellymoserdec.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/nellymoserdec.c b/libavcodec/nellymoserdec.c
index d20db9f40a..328e1683eb 100644
--- a/libavcodec/nellymoserdec.c
+++ b/libavcodec/nellymoserdec.c
@@ -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--;