[FFmpeg-cvslog] r18529 - trunk/libavcodec/celp_filters.c

reynaldo subversion
Wed Apr 15 21:37:35 CEST 2009


Author: reynaldo
Date: Wed Apr 15 21:37:35 2009
New Revision: 18529

Log:
[COSMETIC] Correct a minor nit. Should be clearer now.

Modified:
   trunk/libavcodec/celp_filters.c

Modified: trunk/libavcodec/celp_filters.c
==============================================================================
--- trunk/libavcodec/celp_filters.c	Wed Apr 15 21:28:28 2009	(r18528)
+++ trunk/libavcodec/celp_filters.c	Wed Apr 15 21:37:35 2009	(r18529)
@@ -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++)



More information about the ffmpeg-cvslog mailing list