X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fjfdctint_template.c;h=67fb77b5e12010f1c34d5c599c9d7e8c234e20a7;hb=e5bcda6473a2d6984216004506374669501fcf3b;hp=3ea2f5dadc4e059093f1a872f40cdf8a3dc03d43;hpb=bfd0f42277d1fab7b354f80f5e158e15a75f34ee;p=ffmpeg diff --git a/libavcodec/jfdctint_template.c b/libavcodec/jfdctint_template.c index 3ea2f5dadc4..67fb77b5e12 100644 --- a/libavcodec/jfdctint_template.c +++ b/libavcodec/jfdctint_template.c @@ -69,12 +69,7 @@ #define GLOBAL(x) x #define RIGHT_SHIFT(x, n) ((x) >> (n)) #define MULTIPLY16C16(var,const) ((var)*(const)) - -#if 1 //def USE_ACCURATE_ROUNDING #define DESCALE(x,n) RIGHT_SHIFT((x) + (1 << ((n) - 1)), n) -#else -#define DESCALE(x,n) RIGHT_SHIFT(x, n) -#endif /*