Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
826655d8
Commit
826655d8
authored
Dec 17, 2018
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/program_opencl: Do not use format specifier "z" on Windows.
parent
0b7269e6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
vf_program_opencl.c
libavfilter/vf_program_opencl.c
+2
-1
No files found.
libavfilter/vf_program_opencl.c
View file @
826655d8
...
@@ -144,7 +144,8 @@ static int program_opencl_run(AVFilterContext *avctx)
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment