mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
lavfi: add avfilter_init_str() to replace avfilter_init_filter().
Drop the unused opaque parameter from its signature.
This commit is contained in:
parent
1565cbc65c
commit
48a5adab62
@ -20,6 +20,7 @@ API changes, most recent first:
|
|||||||
avfilter_graph_add_filter().
|
avfilter_graph_add_filter().
|
||||||
Add AVFilterContext.graph pointing to the AVFilterGraph that contains the
|
Add AVFilterContext.graph pointing to the AVFilterGraph that contains the
|
||||||
filter.
|
filter.
|
||||||
|
Add avfilter_init_str(), deprecate avfilter_init_filter().
|
||||||
|
|
||||||
2013-xx-xx - lavfi 3.7.0 - avfilter.h
|
2013-xx-xx - lavfi 3.7.0 - avfilter.h
|
||||||
Add AVFilter.priv_class for exporting filter options through the AVOptions API
|
Add AVFilter.priv_class for exporting filter options through the AVOptions API
|
||||||
|
@ -508,7 +508,14 @@ static int process_unnamed_options(AVFilterContext *ctx, AVDictionary **options,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if FF_API_AVFILTER_INIT_FILTER
|
||||||
int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque)
|
int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque)
|
||||||
|
{
|
||||||
|
return avfilter_init_str(filter, args);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
int avfilter_init_str(AVFilterContext *filter, const char *args)
|
||||||
{
|
{
|
||||||
AVDictionary *options = NULL;
|
AVDictionary *options = NULL;
|
||||||
AVDictionaryEntry *e;
|
AVDictionaryEntry *e;
|
||||||
|
@ -645,6 +645,8 @@ attribute_deprecated
|
|||||||
int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name);
|
int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#if FF_API_AVFILTER_INIT_FILTER
|
||||||
/**
|
/**
|
||||||
* Initialize a filter.
|
* Initialize a filter.
|
||||||
*
|
*
|
||||||
@ -655,7 +657,21 @@ int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *in
|
|||||||
* of this parameter varies by filter.
|
* of this parameter varies by filter.
|
||||||
* @return zero on success
|
* @return zero on success
|
||||||
*/
|
*/
|
||||||
|
attribute_deprecated
|
||||||
int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque);
|
int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize a filter with the supplied parameters.
|
||||||
|
*
|
||||||
|
* @param ctx uninitialized filter context to initialize
|
||||||
|
* @param args Options to initialize the filter with. This must be a
|
||||||
|
* ':'-separated list of options in the 'key=value' form.
|
||||||
|
* May be NULL if the options have been set directly using the
|
||||||
|
* AVOptions API or there are no options that need to be set.
|
||||||
|
* @return 0 on success, a negative AVERROR on failure
|
||||||
|
*/
|
||||||
|
int avfilter_init_str(AVFilterContext *ctx, const char *args);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Free a filter context. This will also remove the filter from its
|
* Free a filter context. This will also remove the filter from its
|
||||||
|
@ -103,7 +103,9 @@ int avfilter_graph_create_filter(AVFilterContext **filt_ctx, AVFilter *filt,
|
|||||||
*filt_ctx = avfilter_graph_alloc_filter(graph_ctx, filt, name);
|
*filt_ctx = avfilter_graph_alloc_filter(graph_ctx, filt, name);
|
||||||
if (!*filt_ctx)
|
if (!*filt_ctx)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
if ((ret = avfilter_init_filter(*filt_ctx, args, opaque)) < 0)
|
|
||||||
|
ret = avfilter_init_str(*filt_ctx, args);
|
||||||
|
if (ret < 0)
|
||||||
goto fail;
|
goto fail;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -57,7 +57,7 @@ int main(int argc, char **argv)
|
|||||||
filter_name);
|
filter_name);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
if (avfilter_init_filter(filter_ctx, filter_args, NULL) < 0) {
|
if (avfilter_init_str(filter_ctx, filter_args) < 0) {
|
||||||
fprintf(stderr, "Impossible to init filter '%s' with arguments '%s'\n",
|
fprintf(stderr, "Impossible to init filter '%s' with arguments '%s'\n",
|
||||||
filter_name, filter_args);
|
filter_name, filter_args);
|
||||||
return 1;
|
return 1;
|
||||||
|
@ -123,7 +123,8 @@ static int create_filter(AVFilterContext **filt_ctx, AVFilterGraph *ctx, int ind
|
|||||||
args = tmp_args;
|
args = tmp_args;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((ret = avfilter_init_filter(*filt_ctx, args, NULL)) < 0) {
|
ret = avfilter_init_str(*filt_ctx, args);
|
||||||
|
if (ret < 0) {
|
||||||
av_log(log_ctx, AV_LOG_ERROR,
|
av_log(log_ctx, AV_LOG_ERROR,
|
||||||
"Error initializing filter '%s' with args '%s'\n", filt_name, args);
|
"Error initializing filter '%s' with args '%s'\n", filt_name, args);
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -61,5 +61,8 @@
|
|||||||
#ifndef FF_API_AVFILTER_OPEN
|
#ifndef FF_API_AVFILTER_OPEN
|
||||||
#define FF_API_AVFILTER_OPEN (LIBAVFILTER_VERSION_MAJOR < 4)
|
#define FF_API_AVFILTER_OPEN (LIBAVFILTER_VERSION_MAJOR < 4)
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef FF_API_AVFILTER_INIT_FILTER
|
||||||
|
#define FF_API_AVFILTER_INIT_FILTER (LIBAVFILTER_VERSION_MAJOR < 4)
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* AVFILTER_VERSION_H */
|
#endif /* AVFILTER_VERSION_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user