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
f98d814b
Commit
f98d814b
authored
Jul 17, 2012
by
Nicolas George
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfiltergraph: add a debug message on EOF.
parent
d06bfda0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
avfiltergraph.c
libavfilter/avfiltergraph.c
+3
-0
No files found.
libavfilter/avfiltergraph.c
View file @
f98d814b
...
...
@@ -983,6 +983,9 @@ int avfilter_graph_request_oldest(AVFilterGraph *graph)
int
r
=
ff_request_frame
(
oldest
);
if
(
r
!=
AVERROR_EOF
)
return
r
;
av_log
(
oldest
->
dst
,
AV_LOG_DEBUG
,
"EOF on sink link %s:%s.
\n
"
,
oldest
->
dst
?
oldest
->
dst
->
name
:
"unknown"
,
oldest
->
dstpad
?
oldest
->
dstpad
->
name
:
"unknown"
);
/* EOF: remove the link from the heap */
if
(
oldest
->
age_index
<
--
graph
->
sink_links_count
)
heap_bubble_down
(
graph
,
graph
->
sink_links
[
graph
->
sink_links_count
],
...
...
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