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:
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>2017-12-17 20:03:47 +0300
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>2017-12-17 20:05:42 +0300
commit9b79c65ec06f2bbe4f44c615b9df70db23126250 (patch)
treeb3bfd88aec74e7968230c86f5f5db95637ddf07e /libavfilter/vf_unsharp_opencl.c
parent600c8729e23b380f75252c0f8ecbdcc2e66e2e6a (diff)
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,