You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	avfilter/vf_blend: ignore SAR from all inputs
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
		| @@ -524,19 +524,12 @@ static int config_output(AVFilterLink *outlink) | ||||
|             av_log(ctx, AV_LOG_ERROR, "inputs must be of same pixel format\n"); | ||||
|             return AVERROR(EINVAL); | ||||
|         } | ||||
|         if (toplink->w                       != bottomlink->w || | ||||
|             toplink->h                       != bottomlink->h || | ||||
|             toplink->sample_aspect_ratio.num != bottomlink->sample_aspect_ratio.num || | ||||
|             toplink->sample_aspect_ratio.den != bottomlink->sample_aspect_ratio.den) { | ||||
|         if (toplink->w != bottomlink->w || toplink->h != bottomlink->h) { | ||||
|             av_log(ctx, AV_LOG_ERROR, "First input link %s parameters " | ||||
|                    "(size %dx%d, SAR %d:%d) do not match the corresponding " | ||||
|                    "second input link %s parameters (%dx%d, SAR %d:%d)\n", | ||||
|                    "(size %dx%d) do not match the corresponding " | ||||
|                    "second input link %s parameters (size %dx%d)\n", | ||||
|                    ctx->input_pads[TOP].name, toplink->w, toplink->h, | ||||
|                    toplink->sample_aspect_ratio.num, | ||||
|                    toplink->sample_aspect_ratio.den, | ||||
|                    ctx->input_pads[BOTTOM].name, bottomlink->w, bottomlink->h, | ||||
|                    bottomlink->sample_aspect_ratio.num, | ||||
|                    bottomlink->sample_aspect_ratio.den); | ||||
|                    ctx->input_pads[BOTTOM].name, bottomlink->w, bottomlink->h); | ||||
|             return AVERROR(EINVAL); | ||||
|         } | ||||
|     } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user