projects
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a1b914b
)
cosmetic
author
Michael Niedermayer
<michaelni@gmx.at>
Wed, 16 Apr 2008 15:33:09 +0000
(15:33 +0000)
committer
Michael Niedermayer
<michaelni@gmx.at>
Wed, 16 Apr 2008 15:33:09 +0000
(15:33 +0000)
Originally committed as revision 12858 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/nellymoserdec.c
patch
|
blob
|
blame
|
history
diff --git
a/libavcodec/nellymoserdec.c
b/libavcodec/nellymoserdec.c
index
d20db9f
..
328e168
100644
(file)
--- 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--;