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 /libavfilter/avfilter.h | |
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>
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 2 |
1 files changed, 1 insertions, 1 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 /** |