1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +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",
.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 }
};