Commit 77cc958f authored by Anton Khirnov's avatar Anton Khirnov

lavfi: add const to the AVFilter parameter of avfilter_graph_create_filter()

This function should never modify the filter.
parent 6da5b57d
...@@ -1001,7 +1001,7 @@ int avfilter_graph_add_filter(AVFilterGraph *graphctx, AVFilterContext *filter); ...@@ -1001,7 +1001,7 @@ int avfilter_graph_add_filter(AVFilterGraph *graphctx, AVFilterContext *filter);
* @return a negative AVERROR error code in case of failure, a non * @return a negative AVERROR error code in case of failure, a non
* negative value otherwise * negative value otherwise
*/ */
int avfilter_graph_create_filter(AVFilterContext **filt_ctx, AVFilter *filt, int avfilter_graph_create_filter(AVFilterContext **filt_ctx, const AVFilter *filt,
const char *name, const char *args, void *opaque, const char *name, const char *args, void *opaque,
AVFilterGraph *graph_ctx); AVFilterGraph *graph_ctx);
......
...@@ -139,7 +139,7 @@ FF_ENABLE_DEPRECATION_WARNINGS ...@@ -139,7 +139,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
} }
#endif #endif
int avfilter_graph_create_filter(AVFilterContext **filt_ctx, AVFilter *filt, int avfilter_graph_create_filter(AVFilterContext **filt_ctx, const AVFilter *filt,
const char *name, const char *args, void *opaque, const char *name, const char *args, void *opaque,
AVFilterGraph *graph_ctx) AVFilterGraph *graph_ctx)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment