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
0b90e4a2
Commit
0b90e4a2
authored
Nov 07, 2010
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document AVFilterInOut fields.
Originally committed as revision 25704 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
55b2a9ba
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
graphparser.h
libavfilter/graphparser.h
+12
-0
No files found.
libavfilter/graphparser.h
View file @
0b90e4a2
...
...
@@ -27,12 +27,24 @@
/**
* A linked-list of the inputs/outputs of the filter chain.
*
* This is mainly useful for avfilter_graph_parse(), since this
* function may accept a description of a graph with not connected
* input/output pads. This struct specifies, per each not connected
* pad contained in the graph, the filter context and the pad index
* required for establishing a link.
*/
typedef
struct
AVFilterInOut
{
/** unique name for this input/output in the list */
char
*
name
;
/** filter context associated to this input/output */
AVFilterContext
*
filter_ctx
;
/** index of the filt_ctx pad to use for linking */
int
pad_idx
;
/** next input/input in the list, NULL if this is the last */
struct
AVFilterInOut
*
next
;
}
AVFilterInOut
;
...
...
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