Commit 71285dab authored by Andreas Rheinhardt's avatar Andreas Rheinhardt

avfilter/vf_midequalizer: Remove always-false format check

This filter uses ff_set_common_formats_from_list().
Reviewed-by: 's avatarPaul B Mahol <onemda@gmail.com>
Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@outlook.com>
parent 0fc1abe0
......@@ -305,11 +305,6 @@ static int config_output(AVFilterLink *outlink)
FFFrameSyncIn *in;
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->h = in0->h;
outlink->sample_aspect_ratio = in0->sample_aspect_ratio;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment