summaryrefslogtreecommitdiff
path: root/libavfilter/avfilter.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-01-31 13:39:45 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-01-31 13:47:17 +0100
commitb288f67434db57f3e3c70c59651b4b1ba2e833e2 (patch)
tree9fdf6b2833fee4c80b7c1b222e66c868a58bb598 /libavfilter/avfilter.c
parenta34f4e2fd2e0e82e66559a45906a09e6e7efbd7e (diff)
avfilter/avfilter: Remove CONFIG_MP_FILTER case
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r--libavfilter/avfilter.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index 76c60c1d29..1b5cc2f64e 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -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;