[FFmpeg-soc] [soc]: r4051 - amr/amrnbfloatdec.c

kmalaussene subversion at mplayerhq.hu
Fri Feb 13 00:47:56 CET 2009


Author: kmalaussene
Date: Fri Feb 13 00:47:56 2009
New Revision: 4051

Log:
Fix interp_pitch_vector accroding to reference code:
in the loop, the index exc_idx should be incremented only once.

Modified:
   amr/amrnbfloatdec.c

Modified: amr/amrnbfloatdec.c
==============================================================================
--- amr/amrnbfloatdec.c	Fri Feb 13 00:45:00 2009	(r4050)
+++ amr/amrnbfloatdec.c	Fri Feb 13 00:47:56 2009	(r4051)
@@ -484,7 +484,6 @@ static void interp_pitch_vector(float *p
         for(i=0; i<10; i++) {
             pitch_vector[n] += b60_idx2[6*i] * exc_idx[ i];
         }
-        exc_idx++;
     }
 }
 



More information about the FFmpeg-soc mailing list