Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-09-21 07:09:26 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-09-21 18:56:49 +0300
commit0d3841b59b1ff969b18cddf899a77797bccdab9d (patch)
treef5b910b1d595dea336bd2abd6e1ac8c7afdb2fa9 /libavfilter/vf_hysteresis.c
parentbd98d125c8d97eeaad332fb743e1c5a8287d5591 (diff)
avfilter/vf_hysteresis: 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>
Diffstat (limited to 'libavfilter/vf_hysteresis.c')
-rw-r--r--libavfilter/vf_hysteresis.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libavfilter/vf_hysteresis.c b/libavfilter/vf_hysteresis.c
index cbbee2691b..0346465e43 100644
--- a/libavfilter/vf_hysteresis.c
+++ b/libavfilter/vf_hysteresis.c
@@ -295,10 +295,6 @@ static int config_output(AVFilterLink *outlink)
FFFrameSyncIn *in;
int ret;
- if (base->format != alt->format) {
- av_log(ctx, AV_LOG_ERROR, "inputs must be of same pixel format\n");
- return AVERROR(EINVAL);
- }
if (base->w != alt->w || base->h != alt->h) {
av_log(ctx, AV_LOG_ERROR, "First input link %s parameters "
"(size %dx%d) do not match the corresponding "