You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	vsrc_buffer: fix check from 7ae7c41.
				
					
				
			The user submitted variable in this function is frame, not buf.
This commit is contained in:
		| @@ -51,7 +51,7 @@ int av_vsrc_buffer_add_frame(AVFilterContext *buffer_filter, AVFrame *frame, | ||||
|     AVFilterBufferRef *buf; | ||||
|     int ret; | ||||
|  | ||||
|     if (!buf) { | ||||
|     if (!frame) { | ||||
|         c->eof = 1; | ||||
|         return 0; | ||||
|     } else if (c->eof) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user