On Thu, Feb 06, 2014 at 12:40:55AM +0000, Christophe Gisquet wrote:
> Win32: 1680 cycles to 1580.
> ---
>  libavcodec/dcadsp.c | 13 ++++++-------
>  1 file changed, 6 insertions(+), 7 deletions(-)

Your grammar is slightly off, did you mean "scan coeffs linearly" or
"scan linear coeffs"?

> --- a/libavcodec/dcadsp.c
> +++ b/libavcodec/dcadsp.c
> @@ -49,13 +49,12 @@ dca_lfe_fir(float *out, const float *in, const float 
> *coefs,
> +        for (j = 0; j < num_coeffs; j++, cf0++) {
> +            v0 += scaled_in[              j] * *cf0;
> +            v1 += scaled_in[num_coeffs-1 -j] * *cf0;

Please drop the empty spaces inside [].

Diego
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to