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
a48abf5e
Commit
a48abf5e
authored
May 15, 2012
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc/filter_design: fix a few other typo.
parent
a28aa76a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
filter_design.txt
doc/filter_design.txt
+4
-4
No files found.
doc/filter_design.txt
View file @
a48abf5e
...
@@ -59,9 +59,9 @@ Frame scheduling
...
@@ -59,9 +59,9 @@ Frame scheduling
filter; these buffered frames must be flushed immediately if a new input
filter; these buffered frames must be flushed immediately if a new input
produces new output.
produces new output.
(
Example: framerate-doubling filter: start_frame must (1) flush the
(Example: framerate-doubling filter: start_frame must (1) flush the
second copy of the previous frame, i
t it is stille
there, (2) push the
second copy of the previous frame, i
f it is still
there, (2) push the
first copy of the incoming frame, (3) keep the second copy for later.
)
first copy of the incoming frame, (3) keep the second copy for later.)
If the input frame is not enough to produce output, the filter must not
If the input frame is not enough to produce output, the filter must not
call request_frame to get more. It must just process the frame or queue
call request_frame to get more. It must just process the frame or queue
...
@@ -89,7 +89,7 @@ Frame scheduling
...
@@ -89,7 +89,7 @@ Frame scheduling
Return values:
Return values:
if request_frame could produce a frame, it should return 0;
if request_frame could produce a frame, it should return 0;
if it could not for temporary reasons, it should return AVERROR(EAGAIN);
if it could not for temporary reasons, it should return AVERROR(EAGAIN);
if it could not because there are no more frames, it shou
s
return
if it could not because there are no more frames, it shou
ld
return
AVERROR_EOF.
AVERROR_EOF.
The typical implementation of request_frame for a filter with several
The typical implementation of request_frame for a filter with several
...
...
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