summaryrefslogtreecommitdiff
path: root/libavfilter/vf_unsharp_opencl.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>2017-12-17 18:03:47 +0100
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>2017-12-17 18:05:42 +0100
commit9b79c65ec06f2bbe4f44c615b9df70db23126250 (patch)
treeb3bfd88aec74e7968230c86f5f5db95637ddf07e /libavfilter/vf_unsharp_opencl.c
parent600c8729e23b380f75252c0f8ecbdcc2e66e2e6a (diff)
downloadffmpeg-9b79c65ec06f2bbe4f44c615b9df70db23126250.tar.gz
lavu/lavc/lavf/lavfi: Do not use type modifier %zu on Windows MSVCRT.
Diffstat (limited to 'libavfilter/vf_unsharp_opencl.c')
-rw-r--r--libavfilter/vf_unsharp_opencl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavfilter/vf_unsharp_opencl.c b/libavfilter/vf_unsharp_opencl.c
index c2ebf70ad9..6a453c014b 100644
--- a/libavfilter/vf_unsharp_opencl.c
+++ b/libavfilter/vf_unsharp_opencl.c
@@ -331,7 +331,8 @@ static int unsharp_opencl_filter_frame(AVFilterLink *inlink, AVFrame *input)
}
av_log(avctx, AV_LOG_DEBUG, "Run kernel on plane %d "
- "(%zux%zu).\n", p, global_work[0], global_work[1]);
+ "(%"SIZE_SPECIFIER"x%"SIZE_SPECIFIER").\n",
+ p, global_work[0], global_work[1]);
cle = clEnqueueNDRangeKernel(ctx->command_queue, ctx->kernel, 2, NULL,
global_work, ctx->global ? NULL : local_work,