Commit 46b3dbf9 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '77cc958f'

* commit '77cc958f':
  lavfi: add const to the AVFilter parameter of avfilter_graph_create_filter()
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents c4f9a4cd 77cc958f
......@@ -1242,7 +1242,7 @@ int avfilter_graph_add_filter(AVFilterGraph *graphctx, AVFilterContext *filter);
* @return a negative AVERROR error code in case of failure, a non
* 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,
AVFilterGraph *graph_ctx);
......
......@@ -148,7 +148,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
}
#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,
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