diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-05-07 16:37:27 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-05-09 16:59:43 +0200 |
commit | 4db84bac1353247dc7585cb78859c8085d9c556e (patch) | |
tree | e52d9ce6acc785a574dbebef0aa5dc909266afd8 /libavfilter/unsharp.h | |
parent | f0250cc4636619fc00406f520a02c36efc24c5e2 (diff) | |
download | ffmpeg-4db84bac1353247dc7585cb78859c8085d9c556e.tar.gz |
lavfi/opencl: replace SHIFTUP with FF_CEIL_RSHIFT.
Diffstat (limited to 'libavfilter/unsharp.h')
-rw-r--r-- | libavfilter/unsharp.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavfilter/unsharp.h b/libavfilter/unsharp.h index 0add8aa7fa..c2259298f6 100644 --- a/libavfilter/unsharp.h +++ b/libavfilter/unsharp.h @@ -30,9 +30,6 @@ #define MIN_MATRIX_SIZE 3 #define MAX_MATRIX_SIZE 63 -/* right-shift and round-up */ -#define SHIFTUP(x,shift) (-((-(x))>>(shift))) - #if CONFIG_OPENCL typedef struct { |