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
b73be80d
Commit
b73be80d
authored
Jul 22, 2012
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/avfilter.h: add doxy for AVFilterLink.cur_buf
parent
20e88d86
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
avfilter.h
libavfilter/avfilter.h
+15
-0
No files found.
libavfilter/avfilter.h
View file @
b73be80d
...
...
@@ -578,7 +578,22 @@ struct AVFilterLink {
*/
AVFilterBufferRef
*
src_buf
;
/**
* The buffer reference to the frame sent across the link by the
* source filter, which is read by the destination filter. It is
* automatically set up by ff_start_frame().
*
* Depending on the permissions, it may either be the same as
* src_buf or an automatic copy of it.
*
* It is automatically freed by the filter system when calling
* ff_end_frame(). In case you save the buffer reference
* internally (e.g. if you cache it for later reuse), or give it
* away (e.g. if you pass the reference to the next filter) it
* must be set to NULL before calling ff_end_frame().
*/
AVFilterBufferRef
*
cur_buf
;
AVFilterBufferRef
*
out_buf
;
struct
AVFilterPool
*
pool
;
...
...
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