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
fbe9ae48
Commit
fbe9ae48
authored
Mar 14, 2014
by
Yu Xiaolei
Committed by
Michael Niedermayer
Mar 14, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter: make avfilter_graph_get_filter use const string name
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
c17dea05
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
avfilter.h
libavfilter/avfilter.h
+1
-1
avfiltergraph.c
libavfilter/avfiltergraph.c
+1
-1
No files found.
libavfilter/avfilter.h
View file @
fbe9ae48
...
...
@@ -1272,7 +1272,7 @@ AVFilterContext *avfilter_graph_alloc_filter(AVFilterGraph *graph,
* @return the pointer to the found filter instance or NULL if it
* cannot be found.
*/
AVFilterContext
*
avfilter_graph_get_filter
(
AVFilterGraph
*
graph
,
char
*
name
);
AVFilterContext
*
avfilter_graph_get_filter
(
AVFilterGraph
*
graph
,
c
onst
c
har
*
name
);
#if FF_API_AVFILTER_OPEN
/**
...
...
libavfilter/avfiltergraph.c
View file @
fbe9ae48
...
...
@@ -281,7 +281,7 @@ static int graph_config_links(AVFilterGraph *graph, AVClass *log_ctx)
return
0
;
}
AVFilterContext
*
avfilter_graph_get_filter
(
AVFilterGraph
*
graph
,
char
*
name
)
AVFilterContext
*
avfilter_graph_get_filter
(
AVFilterGraph
*
graph
,
c
onst
c
har
*
name
)
{
int
i
;
...
...
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