From e67a87eac814c7805d18c983c43033a8a1bd62af Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 25 Feb 2013 21:21:29 +0100 Subject: vf_(no)format: switch to an AVOptions-based system. --- libavfilter/avfilter.c | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'libavfilter/avfilter.c') diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index a8429aac3e..e5a7f13464 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -486,6 +486,33 @@ int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque ret = av_dict_parse_string(&options, args, "=", ":", 0); if (ret < 0) goto fail; +#if FF_API_OLD_FILTER_OPTS + } else if (!strcmp(filter->filter->name, "format") || + !strcmp(filter->filter->name, "noformat")) { + /* a hack for compatibility with the old syntax + * replace colons with |s */ + char *copy = av_strdup(args); + char *p = copy; + + if (!copy) { + ret = AVERROR(ENOMEM); + goto fail; + } + + if (strchr(copy, ':')) { + av_log(filter, AV_LOG_WARNING, "This syntax is deprecated. Use " + "'|' to separate the list items.\n"); + } + + while ((p = strchr(p, ':'))) + *p++ = '|'; + + ret = process_unnamed_options(filter, &options, copy); + av_freep(©); + + if (ret < 0) + goto fail; +#endif } else { ret = process_unnamed_options(filter, &options, args); if (ret < 0) -- cgit v1.2.3