diff options
author | Yu Xiaolei <dreifachstein@gmail.com> | 2014-03-14 12:25:07 +0800 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-03-14 23:18:59 +0100 |
commit | fbe9ae482d5138d14a7e9bd53291921289573485 (patch) | |
tree | 9e453139efbb06c8d0fbd62b1404ea74d7f635e3 | |
parent | c17dea05f746e1e6acc284770a95e94ff765518b (diff) | |
download | ffmpeg-fbe9ae482d5138d14a7e9bd53291921289573485.tar.gz |
avfilter: make avfilter_graph_get_filter use const string name
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/avfilter.h | 2 | ||||
-rw-r--r-- | libavfilter/avfiltergraph.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index ef7e8cadcf..086e9fed36 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -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, const char *name); #if FF_API_AVFILTER_OPEN /** diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c index 1fb83c4877..cfa4a44ddd 100644 --- a/libavfilter/avfiltergraph.c +++ b/libavfilter/avfiltergraph.c @@ -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, const char *name) { int i; |