Commit b288f674 authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/avfilter: Remove CONFIG_MP_FILTER case

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent a34f4e2f
......@@ -965,21 +965,6 @@ int avfilter_init_str(AVFilterContext *filter, const char *args)
goto fail;
#endif
} else {
#if CONFIG_MP_FILTER
if (!strcmp(filter->filter->name, "mp")) {
char *escaped;
if (!strncmp(args, "filter=", 7))
args += 7;
ret = av_escape(&escaped, args, ":=", AV_ESCAPE_MODE_BACKSLASH, 0);
if (ret < 0) {
av_log(filter, AV_LOG_ERROR, "Unable to escape MPlayer filters arg '%s'\n", args);
goto fail;
}
ret = process_options(filter, &options, escaped);
av_free(escaped);
} else
#endif
ret = process_options(filter, &options, args);
if (ret < 0)
goto fail;
......
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