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
16f08b7a
Commit
16f08b7a
authored
Sep 11, 2015
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_framerate: unbreak flushing
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
349970a6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
vf_framerate.c
libavfilter/vf_framerate.c
+4
-1
No files found.
libavfilter/vf_framerate.c
View file @
16f08b7a
...
...
@@ -666,9 +666,12 @@ static int request_frame(AVFilterLink *outlink)
// if there is no "next" frame AND we are not in flush then get one from our input filter
if
(
!
s
->
srce
[
s
->
frst
]
&&
!
s
->
flush
)
{
ff_dlog
(
ctx
,
"request_frame() call source's request_frame()
\n
"
);
if
((
val
=
ff_request_frame
(
outlink
->
src
->
inputs
[
0
]))
<
0
)
{
val
=
ff_request_frame
(
outlink
->
src
->
inputs
[
0
]);
if
(
val
<
0
&&
(
val
!=
AVERROR_EOF
))
{
ff_dlog
(
ctx
,
"request_frame() source's request_frame() returned error:%d
\n
"
,
val
);
return
val
;
}
else
if
(
val
==
AVERROR_EOF
)
{
s
->
flush
=
1
;
}
ff_dlog
(
ctx
,
"request_frame() source's request_frame() returned:%d
\n
"
,
val
);
return
0
;
...
...
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