Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-06-22 22:48:43 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-06-22 22:48:43 +0400
commit31f77b46b2fae919e1977b0dcee38d9c4e23cf18 (patch)
treec2ac9fde3115ae209642cf4cc22d5b0ba993174f /libavfilter/unsharp_opencl.c
parent6ec3dc97fcd27b619621cfb7313ce94764b16a93 (diff)
avfilter/unsharp_opencl: fix macro ()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/unsharp_opencl.c')
-rw-r--r--libavfilter/unsharp_opencl.c2
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)
{