diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-06-22 20:48:43 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-06-22 20:48:43 +0200 |
commit | 31f77b46b2fae919e1977b0dcee38d9c4e23cf18 (patch) | |
tree | c2ac9fde3115ae209642cf4cc22d5b0ba993174f /libavfilter | |
parent | 6ec3dc97fcd27b619621cfb7313ce94764b16a93 (diff) | |
download | ffmpeg-31f77b46b2fae919e1977b0dcee38d9c4e23cf18.tar.gz |
avfilter/unsharp_opencl: fix macro ()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/unsharp_opencl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/unsharp_opencl.c b/libavfilter/unsharp_opencl.c index fff16ab520..8ddd9db933 100644 --- a/libavfilter/unsharp_opencl.c +++ b/libavfilter/unsharp_opencl.c @@ -29,7 +29,7 @@ #include "libavutil/opencl_internal.h" #define PLANE_NUM 3 -#define ROUND_TO_16(a) ((((a- 1)/16)+1)*16) +#define ROUND_TO_16(a) (((((a) - 1)/16)+1)*16) static inline void add_mask_counter(uint32_t *dst, uint32_t *counter1, uint32_t *counter2, int len) { |