1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

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

This function should never modify the filter.
This commit is contained in:
Anton Khirnov 2013-06-14 18:14:33 +02:00
parent 6da5b57da1
commit 77cc958f60
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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)
{ {