Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
593106ff
Commit
593106ff
authored
Sep 29, 2019
by
Mark Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/vf_*_vaapi: Fix error case
Fixes CID 1452400, 1452416, 1452550, 1452590, 1452760.
parent
f130b221
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
vf_deinterlace_vaapi.c
libavfilter/vf_deinterlace_vaapi.c
+1
-1
vf_misc_vaapi.c
libavfilter/vf_misc_vaapi.c
+1
-1
vf_procamp_vaapi.c
libavfilter/vf_procamp_vaapi.c
+1
-1
vf_scale_vaapi.c
libavfilter/vf_scale_vaapi.c
+1
-1
vf_transpose_vaapi.c
libavfilter/vf_transpose_vaapi.c
+1
-1
No files found.
libavfilter/vf_deinterlace_vaapi.c
View file @
593106ff
...
...
@@ -239,7 +239,7 @@ static int deint_vaapi_filter_frame(AVFilterLink *inlink, AVFrame *input_frame)
err
=
av_frame_copy_props
(
output_frame
,
input_frame
);
if
(
err
<
0
)
return
err
;
goto
fail
;
err
=
ff_vaapi_vpp_init_params
(
avctx
,
&
params
,
input_frame
,
output_frame
);
...
...
libavfilter/vf_misc_vaapi.c
View file @
593106ff
...
...
@@ -145,7 +145,7 @@ static int misc_vaapi_filter_frame(AVFilterLink *inlink, AVFrame *input_frame)
err
=
av_frame_copy_props
(
output_frame
,
input_frame
);
if
(
err
<
0
)
return
err
;
goto
fail
;
err
=
ff_vaapi_vpp_init_params
(
avctx
,
&
params
,
input_frame
,
output_frame
);
...
...
libavfilter/vf_procamp_vaapi.c
View file @
593106ff
...
...
@@ -150,7 +150,7 @@ static int procamp_vaapi_filter_frame(AVFilterLink *inlink, AVFrame *input_frame
err
=
av_frame_copy_props
(
output_frame
,
input_frame
);
if
(
err
<
0
)
return
err
;
goto
fail
;
err
=
ff_vaapi_vpp_init_params
(
avctx
,
&
params
,
input_frame
,
output_frame
);
...
...
libavfilter/vf_scale_vaapi.c
View file @
593106ff
...
...
@@ -125,7 +125,7 @@ static int scale_vaapi_filter_frame(AVFilterLink *inlink, AVFrame *input_frame)
err
=
av_frame_copy_props
(
output_frame
,
input_frame
);
if
(
err
<
0
)
return
err
;
goto
fail
;
if
(
ctx
->
colour_primaries
!=
AVCOL_PRI_UNSPECIFIED
)
output_frame
->
color_primaries
=
ctx
->
colour_primaries
;
...
...
libavfilter/vf_transpose_vaapi.c
View file @
593106ff
...
...
@@ -145,7 +145,7 @@ static int transpose_vaapi_filter_frame(AVFilterLink *inlink, AVFrame *input_fra
err
=
av_frame_copy_props
(
output_frame
,
input_frame
);
if
(
err
<
0
)
return
err
;
goto
fail
;
err
=
ff_vaapi_vpp_init_params
(
avctx
,
&
params
,
input_frame
,
output_frame
);
...
...
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