1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

lavfi/vf_overlay_qsv: remove needs_fifo.

It is not relevant when using activate and framesync.
This commit is contained in:
Nicolas George
2020-08-12 17:22:21 +02:00
parent 23bbb01077
commit 7c1fbf7cf3

View File

@@ -398,13 +398,11 @@ static const AVFilterPad overlay_qsv_inputs[] = {
.name = "main", .name = "main",
.type = AVMEDIA_TYPE_VIDEO, .type = AVMEDIA_TYPE_VIDEO,
.config_props = config_main_input, .config_props = config_main_input,
.needs_fifo = 1,
}, },
{ {
.name = "overlay", .name = "overlay",
.type = AVMEDIA_TYPE_VIDEO, .type = AVMEDIA_TYPE_VIDEO,
.config_props = config_overlay_input, .config_props = config_overlay_input,
.needs_fifo = 1,
}, },
{ NULL } { NULL }
}; };