Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2016-12-05 20:38:32 +0300
committerVittorio Giovara <vittorio.giovara@gmail.com>2017-03-23 11:57:32 +0300
commit88fd836a015a5f3380df74592e440e7d1e5b8000 (patch)
treea166dec6a16c86fcdcf3b49681697d085b049a9e /libavfilter/af_join.c
parent07a2b155949eb267cdfc7805f42c7b3375f9c7c5 (diff)
lavfi: Drop deprecated way of passing options for a few filters
Deprecated in 02/2013.
Diffstat (limited to 'libavfilter/af_join.c')
-rw-r--r--libavfilter/af_join.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/libavfilter/af_join.c b/libavfilter/af_join.c
index 4d86c8b357..b61033f7a2 100644
--- a/libavfilter/af_join.c
+++ b/libavfilter/af_join.c
@@ -104,14 +104,6 @@ static int parse_maps(AVFilterContext *ctx)
char separator = '|';
char *cur = s->map;
-#if FF_API_OLD_FILTER_OPTS
- if (cur && strchr(cur, ',')) {
- av_log(ctx, AV_LOG_WARNING, "This syntax is deprecated, use '|' to "
- "separate the mappings.\n");
- separator = ',';
- }
-#endif
-
while (cur && *cur) {
char *sep, *next, *p;
uint64_t in_channel = 0, out_channel = 0;