[COSMETIC] Correct a minor nit. Should be clearer now.
authorReynaldo H. Verdejo Pinochet <reynaldo@opendot.cl>
Wed, 15 Apr 2009 19:37:35 +0000 (19:37 +0000)
committerReynaldo H. Verdejo Pinochet <reynaldo@opendot.cl>
Wed, 15 Apr 2009 19:37:35 +0000 (19:37 +0000)
Originally committed as revision 18529 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/celp_filters.c

index ef1a578..2a6b067 100644 (file)
@@ -61,7 +61,7 @@ int ff_celp_lp_synthesis_filter(
 {
     int i,n;
 
-    // This line is to avoid a +1 subtraction in the main loop.
+    // Avoids a +1 in the inner loop.
     filter_length++;
 
     for(n=0; n<buffer_length; n++)
@@ -93,7 +93,7 @@ void ff_celp_lp_synthesis_filterf(
 {
     int i,n;
 
-    // This line is to avoid a +1 subtraction in the main loop
+    // Avoids a +1 in the inner loop.
     filter_length++;
 
     for(n=0; n<buffer_length; n++)