[FFmpeg-cvslog] lavfi/program_opencl: Do not use format specifier "z" on Windows.

Carl Eugen Hoyos git at videolan.org
Mon Dec 17 15:45:50 EET 2018


ffmpeg | branch: master | Carl Eugen Hoyos <ceffmpeg at gmail.com> | Mon Dec 17 14:44:10 2018 +0100| [826655d8d11749f521f517a8091eccbf2d516c34] | committer: Carl Eugen Hoyos

lavfi/program_opencl: Do not use format specifier "z" on Windows.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=826655d8d11749f521f517a8091eccbf2d516c34
---

 libavfilter/vf_program_opencl.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libavfilter/vf_program_opencl.c b/libavfilter/vf_program_opencl.c
index dfb25652bc..ec25e931f5 100644
--- a/libavfilter/vf_program_opencl.c
+++ b/libavfilter/vf_program_opencl.c
@@ -144,7 +144,8 @@ static int program_opencl_run(AVFilterContext *avctx)
             goto fail;
 
         av_log(avctx, AV_LOG_DEBUG, "Run kernel on plane %d "
-               "(%zux%zu).\n", plane, global_work[0], global_work[1]);
+               "(%"SIZE_SPECIFIER"x%"SIZE_SPECIFIER").\n",
+               plane, global_work[0], global_work[1]);
 
         cle = clEnqueueNDRangeKernel(ctx->command_queue, ctx->kernel, 2, NULL,
                                      global_work, NULL, 0, NULL, NULL);



More information about the ffmpeg-cvslog mailing list