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

github.com/FFmpeg/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 01:05:43 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-06-22 01:11:16 +0400
commit84de3ed795d058b1affe4961c3bc83dc4cae1076 (patch)
treea2d278c4161eb6ccde1d5866de130e9d2cf89fe4 /libavfilter/deshake_opencl.c
parent04776cedec8210e859ab96adbee9c41de2dee6b3 (diff)
avfilter/deshake_opencl: fix macro ()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/deshake_opencl.c')
-rw-r--r--libavfilter/deshake_opencl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/deshake_opencl.c b/libavfilter/deshake_opencl.c
index caf2bf2e2d..c66103cb7b 100644
--- a/libavfilter/deshake_opencl.c
+++ b/libavfilter/deshake_opencl.c
@@ -31,7 +31,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)
int ff_opencl_transform(AVFilterContext *ctx,
int width, int height, int cw, int ch,