Diego Biurrun <[email protected]> writes:

> ---
>  libavcodec/alpha/simple_idct_alpha.c |   14 +++++++-------
>  1 files changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/libavcodec/alpha/simple_idct_alpha.c 
> b/libavcodec/alpha/simple_idct_alpha.c
> index 8f5c134..bb76c1e 100644
> --- a/libavcodec/alpha/simple_idct_alpha.c
> +++ b/libavcodec/alpha/simple_idct_alpha.c
> @@ -33,13 +33,13 @@
>  // cos(i * M_PI / 16) * sqrt(2) * (1 << 14)
>  // W4 is actually exactly 16384, but using 16383 works around
>  // accumulating rounding errors for some encoders
> -#define W1 ((int_fast32_t) 22725)
> -#define W2 ((int_fast32_t) 21407)
> -#define W3 ((int_fast32_t) 19266)
> -#define W4 ((int_fast32_t) 16383)
> -#define W5 ((int_fast32_t) 12873)
> -#define W6 ((int_fast32_t)  8867)
> -#define W7 ((int_fast32_t)  4520)
> +#define W1 22725
> +#define W2 21407
> +#define W3 19266
> +#define W4 16383
> +#define W5 12873
> +#define W6  8867
> +#define W7  4520
>  #define ROW_SHIFT 11
>  #define COL_SHIFT 20

OK

-- 
Måns Rullgård
[email protected]
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to