On Mon, Jul 09, 2012 at 05:23:45PM -0400, Justin Ruggles wrote:
> 
> --- a/libavcodec/alac.c
> +++ b/libavcodec/alac.c
> @@ -198,71 +198,71 @@ static void predictor_decompress_fir_adapt(int32_t 
> *error_buffer,
>  
> -            val = buffer_out[i] + error_buffer[i+1];
> -            buffer_out[i+1] = val;
> +        val = buffer_out[i] + error_buffer[i+1];
> +        buffer_out[i+1] = val;
>  
> -            outval = (1 << (predictor_quantitization-1)) + sum;
> +        outval = (1 << (predictor_quantitization-1)) + sum;
>  
> -            buffer_out[predictor_coef_num+1] = outval;
> +        buffer_out[predictor_coef_num+1] = outval;

extra good karma for adding spaces around operators here

Patch OK either way.

Diego
_______________________________________________
libav-devel mailing list
libav-devel@libav.org
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to