[FFmpeg-cvslog] r12853 - trunk/libavcodec/nellymoserdec.c
michael
subversion
Wed Apr 16 16:55:11 CEST 2008
Author: michael
Date: Wed Apr 16 16:55:11 2008
New Revision: 12853
Log:
kommutative law based cleanup
Modified:
trunk/libavcodec/nellymoserdec.c
Modified: trunk/libavcodec/nellymoserdec.c
==============================================================================
--- trunk/libavcodec/nellymoserdec.c (original)
+++ trunk/libavcodec/nellymoserdec.c Wed Apr 16 16:55:11 2008
@@ -121,7 +121,7 @@ static void overlap_and_window(NellyMose
while (bot < NELLY_BUF_LEN/2) {
audio[bot] = ( a_in[bot]*sine_window[bot]+state[bot]*sine_window[top])/s->scale_bias + s->add_bias;
- audio[top] = (state[bot]*sine_window[bot]+ a_in[top]*sine_window[top])/s->scale_bias + s->add_bias;
+ audio[top] = ( a_in[top]*sine_window[top]+state[bot]*sine_window[bot])/s->scale_bias + s->add_bias;
state[bot] = a_in[bot + NELLY_BUF_LEN];
bot++;
More information about the ffmpeg-cvslog
mailing list