mirror of https://git.ffmpeg.org/ffmpeg.git
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:
parent
0fc1abe031
commit
71285daba9
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue