lavfi/program_opencl: Do not use format specifier "z" on Windows.
This commit is contained in:
@@ -144,7 +144,8 @@ static int program_opencl_run(AVFilterContext *avctx)
|
|||||||
goto fail;
|
goto fail;
|
||||||
|
|
||||||
av_log(avctx, AV_LOG_DEBUG, "Run kernel on plane %d "
|
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,
|
cle = clEnqueueNDRangeKernel(ctx->command_queue, ctx->kernel, 2, NULL,
|
||||||
global_work, NULL, 0, NULL, NULL);
|
global_work, NULL, 0, NULL, NULL);
|
||||||
|
Reference in New Issue
Block a user