summaryrefslogtreecommitdiff
path: root/libavcodec/acelp_filters.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/acelp_filters.c')
-rw-r--r--libavcodec/acelp_filters.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/acelp_filters.c b/libavcodec/acelp_filters.c
index 86f53923ca..e05efa40e5 100644
--- a/libavcodec/acelp_filters.c
+++ b/libavcodec/acelp_filters.c
@@ -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])