summaryrefslogtreecommitdiff
path: root/libavfilter/avfilter.h
diff options
context:
space:
mode:
authorYu Xiaolei <dreifachstein@gmail.com>2014-03-14 12:25:07 +0800
committerMichael Niedermayer <michaelni@gmx.at>2014-03-14 23:18:59 +0100
commitfbe9ae482d5138d14a7e9bd53291921289573485 (patch)
tree9e453139efbb06c8d0fbd62b1404ea74d7f635e3 /libavfilter/avfilter.h
parentc17dea05f746e1e6acc284770a95e94ff765518b (diff)
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.h2
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
/**