lavfi/af_aformat: remove support for comma-separated lists
It has been deprecated for nine years.
This commit is contained in:
		
							parent
							
								
									4b72bca6ca
								
							
						
					
					
						commit
						add3571a59
					
				@ -62,19 +62,12 @@ AVFILTER_DEFINE_CLASS(aformat);
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#define PARSE_FORMATS(str, type, list, add_to_list, get_fmt, none, desc)    \
 | 
					#define PARSE_FORMATS(str, type, list, add_to_list, get_fmt, none, desc)    \
 | 
				
			||||||
do {                                                                        \
 | 
					do {                                                                        \
 | 
				
			||||||
    char *next, *cur = str, sep;                                            \
 | 
					    char *next, *cur = str;                                                 \
 | 
				
			||||||
    int ret;                                                                \
 | 
					    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) {                                                           \
 | 
					    while (cur) {                                                           \
 | 
				
			||||||
        type fmt;                                                           \
 | 
					        type fmt;                                                           \
 | 
				
			||||||
        next = strchr(cur, sep);                                            \
 | 
					        next = strchr(cur, '|');                                            \
 | 
				
			||||||
        if (next)                                                           \
 | 
					        if (next)                                                           \
 | 
				
			||||||
            *next++ = 0;                                                    \
 | 
					            *next++ = 0;                                                    \
 | 
				
			||||||
                                                                            \
 | 
					                                                                            \
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user