1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-09 01:07:01 +02:00

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

Originally committed as revision 18529 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Reynaldo H. Verdejo Pinochet 2009-04-15 19:37:35 +00:00
parent 807c4c7875
commit e223a3bd38

View 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++)