From 7c1fbf7cf3c32b02c53025d2e08fe460b9b275b2 Mon Sep 17 00:00:00 2001 From: Nicolas George Date: Wed, 12 Aug 2020 17:22:21 +0200 Subject: [PATCH] lavfi/vf_overlay_qsv: remove needs_fifo. It is not relevant when using activate and framesync. --- libavfilter/vf_overlay_qsv.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavfilter/vf_overlay_qsv.c b/libavfilter/vf_overlay_qsv.c index 2a4dc5cb58..11f5fc2242 100644 --- a/libavfilter/vf_overlay_qsv.c +++ b/libavfilter/vf_overlay_qsv.c @@ -398,13 +398,11 @@ static const AVFilterPad overlay_qsv_inputs[] = { .name = "main", .type = AVMEDIA_TYPE_VIDEO, .config_props = config_main_input, - .needs_fifo = 1, }, { .name = "overlay", .type = AVMEDIA_TYPE_VIDEO, .config_props = config_overlay_input, - .needs_fifo = 1, }, { NULL } };