diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-08-21 21:33:31 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-08-21 21:33:31 +0000 |
commit | fee37a498565c2d7bb62982411ed970a92d75351 (patch) | |
tree | 01a06466481a2a7094893973c18117cd5c54310a | |
parent | 012fd207a38450e27ef5be6c9172db1187fc893f (diff) | |
download | ffmpeg-fee37a498565c2d7bb62982411ed970a92d75351.tar.gz |
Document code, do not document difference to a irrelevant reference implementation.
Originally committed as revision 14885 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/acelp_filters.c | 3 |
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]) |