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
98137a1a
Commit
98137a1a
authored
Jul 22, 2010
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document create_filter().
Originally committed as revision 24423 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
d2874a9d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
graphparser.c
libavfilter/graphparser.c
+11
-0
No files found.
libavfilter/graphparser.c
View file @
98137a1a
...
@@ -80,6 +80,17 @@ static char *parse_link_name(const char **buf, AVClass *log_ctx)
...
@@ -80,6 +80,17 @@ static char *parse_link_name(const char **buf, AVClass *log_ctx)
return
name
;
return
name
;
}
}
/**
* Create an instance of a filter, initialize and insert it in the
* filtergraph in *ctx.
*
* @param ctx the filtergraph context
* @param index an index which is supposed to be unique for each filter instance added to the filtergraph
* @param filt_name the name of the filter to create
* @param args the arguments provided to the filter during its initialization
* @param log_ctx the log context to use
* @return a filter context in case of successful creation and configuration, NULL otherwise.
*/
static
AVFilterContext
*
create_filter
(
AVFilterGraph
*
ctx
,
int
index
,
static
AVFilterContext
*
create_filter
(
AVFilterGraph
*
ctx
,
int
index
,
const
char
*
filt_name
,
const
char
*
args
,
const
char
*
filt_name
,
const
char
*
args
,
AVClass
*
log_ctx
)
AVClass
*
log_ctx
)
...
...
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