summaryrefslogtreecommitdiff
path: root/libavcodec/celp_filters.c
diff options
context:
space:
mode:
authorReynaldo H. Verdejo Pinochet <reynaldo@opendot.cl>2009-04-15 19:37:35 +0000
committerReynaldo H. Verdejo Pinochet <reynaldo@opendot.cl>2009-04-15 19:37:35 +0000
commite223a3bd38165a336416279edb46173c7c5041dd (patch)
treedcdc09f1badf21e134dc909ff583f8e02df27684 /libavcodec/celp_filters.c
parent807c4c787597407038750dcae6935134ed0f9015 (diff)
[COSMETIC] Correct a minor nit. Should be clearer now.
Originally committed as revision 18529 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/celp_filters.c')
-rw-r--r--libavcodec/celp_filters.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/celp_filters.c b/libavcodec/celp_filters.c
index ef1a578f44..2a6b0670b4 100644
--- a/libavcodec/celp_filters.c
+++ b/libavcodec/celp_filters.c
@@ -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++)