[FFmpeg-cvslog] r14885 - trunk/libavcodec/acelp_filters.c

michael subversion
Thu Aug 21 23:33:31 CEST 2008


Author: michael
Date: Thu Aug 21 23:33:31 2008
New Revision: 14885

Log:
Document code, do not document difference to a irrelevant reference implementation.


Modified:
   trunk/libavcodec/acelp_filters.c

Modified: trunk/libavcodec/acelp_filters.c
==============================================================================
--- trunk/libavcodec/acelp_filters.c	(original)
+++ trunk/libavcodec/acelp_filters.c	Thu Aug 21 23:33:31 2008
@@ -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])




More information about the ffmpeg-cvslog mailing list