mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Merge commit '77cc958f60f73963be4281d6e82ef81707e40c26'
* commit '77cc958f60f73963be4281d6e82ef81707e40c26': lavfi: add const to the AVFilter parameter of avfilter_graph_create_filter() Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
46b3dbf9ca
@ -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
|
* @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);
|
||||||
|
|
||||||
|
@ -148,7 +148,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)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user