You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	avfilter/vf_framepack: Use formats list instead of query function
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
		| @@ -79,12 +79,6 @@ static const enum AVPixelFormat formats_supported[] = { | ||||
|     AV_PIX_FMT_NONE | ||||
| }; | ||||
|  | ||||
| static int query_formats(AVFilterContext *ctx) | ||||
| { | ||||
|     // this will ensure that formats are the same on all pads | ||||
|     return ff_set_common_formats_from_list(ctx, formats_supported); | ||||
| } | ||||
|  | ||||
| static av_cold void framepack_uninit(AVFilterContext *ctx) | ||||
| { | ||||
|     FramepackContext *s = ctx->priv; | ||||
| @@ -471,7 +465,7 @@ const AVFilter ff_vf_framepack = { | ||||
|     .priv_class    = &framepack_class, | ||||
|     FILTER_INPUTS(framepack_inputs), | ||||
|     FILTER_OUTPUTS(framepack_outputs), | ||||
|     FILTER_QUERY_FUNC(query_formats), | ||||
|     FILTER_PIXFMTS_ARRAY(formats_supported), | ||||
|     .activate      = activate, | ||||
|     .uninit        = framepack_uninit, | ||||
| }; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user