summaryrefslogtreecommitdiff
path: root/libavfilter/af_aformat.c
diff options
context:
space:
mode:
authorNicolas George <george@nsup.org>2022-03-02 17:02:39 +0100
committerNicolas George <george@nsup.org>2022-03-02 17:21:04 +0100
commitadd3571a5938c591da115dcc41291188b0651b09 (patch)
tree7c3c503e20e7d76c7378be085072dbcd365002fa /libavfilter/af_aformat.c
parent4b72bca6ca3f982614ac2f94160c55abe3778555 (diff)
downloadffmpeg-add3571a5938c591da115dcc41291188b0651b09.tar.gz
lavfi/af_aformat: remove support for comma-separated lists
It has been deprecated for nine years.
Diffstat (limited to 'libavfilter/af_aformat.c')
-rw-r--r--libavfilter/af_aformat.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/libavfilter/af_aformat.c b/libavfilter/af_aformat.c
index ed3c75311a..d2599431dc 100644
--- a/libavfilter/af_aformat.c
+++ b/libavfilter/af_aformat.c
@@ -62,19 +62,12 @@ AVFILTER_DEFINE_CLASS(aformat);
#define PARSE_FORMATS(str, type, list, add_to_list, get_fmt, none, desc) \
do { \
- char *next, *cur = str, sep; \
+ char *next, *cur = str; \
int ret; \
\
- if (str && strchr(str, ',')) { \
- av_log(ctx, AV_LOG_WARNING, "This syntax is deprecated, use '|' to "\
- "separate %s.\n", desc); \
- sep = ','; \
- } else \
- sep = '|'; \
- \
while (cur) { \
type fmt; \
- next = strchr(cur, sep); \
+ next = strchr(cur, '|'); \
if (next) \
*next++ = 0; \
\