[FFmpeg-cvslog] r12855 - trunk/libavcodec/nellymoserdec.c

michael subversion
Wed Apr 16 17:03:07 CEST 2008


Author: michael
Date: Wed Apr 16 17:03:07 2008
New Revision: 12855

Log:
simplify


Modified:
   trunk/libavcodec/nellymoserdec.c

Modified: trunk/libavcodec/nellymoserdec.c
==============================================================================
--- trunk/libavcodec/nellymoserdec.c	(original)
+++ trunk/libavcodec/nellymoserdec.c	Wed Apr 16 17:03:07 2008
@@ -119,9 +119,8 @@ static void overlap_and_window(NellyMose
     bot = 0;
     top = NELLY_BUF_LEN-1;
 
-    while (bot < NELLY_BUF_LEN/2) {
+    while (bot < NELLY_BUF_LEN) {
         audio[bot] = ( a_in[bot]*sine_window[bot]+state[bot]*sine_window[top])/s->scale_bias + s->add_bias;
-        audio[top] = ( a_in[top]*sine_window[top]+state[top]*sine_window[bot])/s->scale_bias + s->add_bias;
 
         bot++;
         top--;




More information about the ffmpeg-cvslog mailing list