[FFmpeg-devel] [PATCH] lavfi/af_aformat: remove support for comma-separated lists

Nicolas George george at nsup.org
Wed Mar 2 18:04:38 EET 2022


It has been deprecated for nine years.

Signed-off-by: Nicolas George <george at nsup.org>
---
 libavfilter/af_aformat.c | 11 ++---------
 1 file changed, 2 insertions(+), 9 deletions(-)


I want to share the delimiter-seeking function with vf_format and add
support for '/'.


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;                                                    \
                                                                             \
-- 
2.34.1



More information about the ffmpeg-devel mailing list