You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	"[" is a terminating char for the filter name. This fixes the parsing of
things like [in] vflip [out]; Originally committed as revision 18772 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
		| @@ -120,7 +120,7 @@ static AVFilterContext *parse_filter(const char **buf, AVFilterGraph *graph, | ||||
|                                      int index, AVClass *log_ctx) | ||||
| { | ||||
|     char *opts = NULL; | ||||
|     char *name = av_get_token(buf, "=,"); | ||||
|     char *name = av_get_token(buf, "=,["); | ||||
|     AVFilterContext *ret; | ||||
|  | ||||
|     if(**buf == '=') { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user