Commit f7a54dba authored by michael's avatar michael

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14885 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 72eed39d
......@@ -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])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment