You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	avfilter/dualinput: Add support to skip initial unpaired frames
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
		| @@ -66,6 +66,9 @@ int ff_dualinput_init(AVFilterContext *ctx, FFDualInputContext *s) | ||||
|         in[1].after = EXT_NULL; | ||||
|         in[1].sync  = 0; | ||||
|     } | ||||
|     if (s->skip_initial_unpaired) { | ||||
|         in[1].before = EXT_STOP; | ||||
|     } | ||||
|  | ||||
|     return ff_framesync_configure(&s->fs); | ||||
| } | ||||
|   | ||||
| @@ -35,6 +35,7 @@ typedef struct { | ||||
|     AVFrame *(*process)(AVFilterContext *ctx, AVFrame *main, const AVFrame *second); | ||||
|     int shortest;               ///< terminate stream when the second input terminates | ||||
|     int repeatlast;             ///< repeat last second frame | ||||
|     int skip_initial_unpaired;  ///< Skip initial frames that do not have a 2nd input | ||||
| } FFDualInputContext; | ||||
|  | ||||
| int ff_dualinput_init(AVFilterContext *ctx, FFDualInputContext *s); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user