Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
29c663d5
Commit
29c663d5
authored
7 years ago
by
drfer3
Committed by
Mark Thompson
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
avfilter/vf_avgblur_opencl: fix error when clSetKernelArg fails
Fixes Coverity CID 1430382.
parent
213839ed
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavfilter/vf_avgblur_opencl.c
+6
-0
6 additions, 0 deletions
libavfilter/vf_avgblur_opencl.c
with
6 additions
and
0 deletions
libavfilter/vf_avgblur_opencl.c
+
6
−
0
View file @
29c663d5
...
@@ -155,18 +155,21 @@ static int avgblur_opencl_filter_frame(AVFilterLink *inlink, AVFrame *input)
...
@@ -155,18 +155,21 @@ static int avgblur_opencl_filter_frame(AVFilterLink *inlink, AVFrame *input)
if
(
cle
!=
CL_SUCCESS
)
{
if
(
cle
!=
CL_SUCCESS
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to set kernel "
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to set kernel "
"destination image argument: %d.
\n
"
,
cle
);
"destination image argument: %d.
\n
"
,
cle
);
err
=
AVERROR_UNKNOWN
;
goto
fail
;
goto
fail
;
}
}
cle
=
clSetKernelArg
(
ctx
->
kernel_horiz
,
1
,
sizeof
(
cl_mem
),
&
src
);
cle
=
clSetKernelArg
(
ctx
->
kernel_horiz
,
1
,
sizeof
(
cl_mem
),
&
src
);
if
(
cle
!=
CL_SUCCESS
)
{
if
(
cle
!=
CL_SUCCESS
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to set kernel "
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to set kernel "
"source image argument: %d.
\n
"
,
cle
);
"source image argument: %d.
\n
"
,
cle
);
err
=
AVERROR_UNKNOWN
;
goto
fail
;
goto
fail
;
}
}
cle
=
clSetKernelArg
(
ctx
->
kernel_horiz
,
2
,
sizeof
(
cl_int
),
&
radius_x
);
cle
=
clSetKernelArg
(
ctx
->
kernel_horiz
,
2
,
sizeof
(
cl_int
),
&
radius_x
);
if
(
cle
!=
CL_SUCCESS
)
{
if
(
cle
!=
CL_SUCCESS
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to set kernel "
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to set kernel "
"sizeX argument: %d.
\n
"
,
cle
);
"sizeX argument: %d.
\n
"
,
cle
);
err
=
AVERROR_UNKNOWN
;
goto
fail
;
goto
fail
;
}
}
...
@@ -193,18 +196,21 @@ static int avgblur_opencl_filter_frame(AVFilterLink *inlink, AVFrame *input)
...
@@ -193,18 +196,21 @@ static int avgblur_opencl_filter_frame(AVFilterLink *inlink, AVFrame *input)
if
(
cle
!=
CL_SUCCESS
)
{
if
(
cle
!=
CL_SUCCESS
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to set kernel "
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to set kernel "
"destination image argument: %d.
\n
"
,
cle
);
"destination image argument: %d.
\n
"
,
cle
);
err
=
AVERROR_UNKNOWN
;
goto
fail
;
goto
fail
;
}
}
cle
=
clSetKernelArg
(
ctx
->
kernel_vert
,
1
,
sizeof
(
cl_mem
),
&
inter
);
cle
=
clSetKernelArg
(
ctx
->
kernel_vert
,
1
,
sizeof
(
cl_mem
),
&
inter
);
if
(
cle
!=
CL_SUCCESS
)
{
if
(
cle
!=
CL_SUCCESS
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to set kernel "
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to set kernel "
"source image argument: %d.
\n
"
,
cle
);
"source image argument: %d.
\n
"
,
cle
);
err
=
AVERROR_UNKNOWN
;
goto
fail
;
goto
fail
;
}
}
cle
=
clSetKernelArg
(
ctx
->
kernel_vert
,
2
,
sizeof
(
cl_int
),
&
radius_y
);
cle
=
clSetKernelArg
(
ctx
->
kernel_vert
,
2
,
sizeof
(
cl_int
),
&
radius_y
);
if
(
cle
!=
CL_SUCCESS
)
{
if
(
cle
!=
CL_SUCCESS
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to set kernel "
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to set kernel "
"sizeY argument: %d.
\n
"
,
cle
);
"sizeY argument: %d.
\n
"
,
cle
);
err
=
AVERROR_UNKNOWN
;
goto
fail
;
goto
fail
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment