You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avfilter/vf_midequalizer: Remove always-false format check
This filter uses ff_set_common_formats_from_list(). Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
@@ -305,11 +305,6 @@ static int config_output(AVFilterLink *outlink)
|
|||||||
FFFrameSyncIn *in;
|
FFFrameSyncIn *in;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if (in0->format != in1->format) {
|
|
||||||
av_log(ctx, AV_LOG_ERROR, "inputs must be of same pixel format\n");
|
|
||||||
return AVERROR(EINVAL);
|
|
||||||
}
|
|
||||||
|
|
||||||
outlink->w = in0->w;
|
outlink->w = in0->w;
|
||||||
outlink->h = in0->h;
|
outlink->h = in0->h;
|
||||||
outlink->sample_aspect_ratio = in0->sample_aspect_ratio;
|
outlink->sample_aspect_ratio = in0->sample_aspect_ratio;
|
||||||
|
Reference in New Issue
Block a user