Commit 92cd2c04 authored by Clément Bœsch's avatar Clément Bœsch

Merge commit '263efc09'

* commit '263efc09':
  jfdct: Kill broken cruft
Merged-by: 's avatarClément Bœsch <u@pkh.me>
parents 3eed90b1 263efc09
......@@ -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
/*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment