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
4d84c7de
Commit
4d84c7de
authored
Apr 15, 2012
by
Robert Nagy
Committed by
Michael Niedermayer
Apr 15, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
yadif: fixed missing error handling for poll_frame.
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
3be0c86b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
vf_yadif.c
libavfilter/vf_yadif.c
+4
-0
No files found.
libavfilter/vf_yadif.c
View file @
4d84c7de
...
@@ -314,11 +314,15 @@ static int poll_frame(AVFilterLink *link)
...
@@ -314,11 +314,15 @@ static int poll_frame(AVFilterLink *link)
return
1
;
return
1
;
val
=
avfilter_poll_frame
(
link
->
src
->
inputs
[
0
]);
val
=
avfilter_poll_frame
(
link
->
src
->
inputs
[
0
]);
if
(
val
<=
0
)
return
val
;
if
(
val
>=
1
&&
!
yadif
->
next
)
{
//FIXME change API to not requre this red tape
if
(
val
>=
1
&&
!
yadif
->
next
)
{
//FIXME change API to not requre this red tape
if
((
ret
=
avfilter_request_frame
(
link
->
src
->
inputs
[
0
]))
<
0
)
if
((
ret
=
avfilter_request_frame
(
link
->
src
->
inputs
[
0
]))
<
0
)
return
ret
;
return
ret
;
val
=
avfilter_poll_frame
(
link
->
src
->
inputs
[
0
]);
val
=
avfilter_poll_frame
(
link
->
src
->
inputs
[
0
]);
if
(
val
<=
0
)
return
val
;
}
}
assert
(
yadif
->
next
||
!
val
);
assert
(
yadif
->
next
||
!
val
);
...
...
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