Document code, do not document difference to a irrelevant reference implementation.
authorMichael Niedermayer <michaelni@gmx.at>
Thu, 21 Aug 2008 21:33:31 +0000 (21:33 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Thu, 21 Aug 2008 21:33:31 +0000 (21:33 +0000)
Originally committed as revision 14885 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/acelp_filters.c

index 86f5392..e05efa4 100644 (file)
@@ -92,8 +92,7 @@ void ff_acelp_convolve_circ(
     memset(fc_out, 0, subframe_size * sizeof(int16_t));
 
     /* Since there are few pulses over an entire subframe (i.e. almost
-       all fc_in[i] are zero) it is faster to swap two loops and process
-       non-zero samples only. */
+       all fc_in[i] are zero) it is faster to loop over fc_in first. */
     for(i=0; i<subframe_size; i++)
     {
         if(fc_in[i])