From 856b7cae9f40c094be6a1dfa73eb57295838496c Mon Sep 17 00:00:00 2001 From: Robert Nagy Date: Sat, 13 Jan 2018 16:51:43 +0100 Subject: [PATCH] avfilter/vf_idet: added more YUVA formats to idet query_formats Signed-off-by: Michael Niedermayer --- libavfilter/vf_idet.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavfilter/vf_idet.c b/libavfilter/vf_idet.c index 14f031aaa9..02ae2edcb9 100644 --- a/libavfilter/vf_idet.c +++ b/libavfilter/vf_idet.c @@ -392,6 +392,8 @@ static int query_formats(AVFilterContext *ctx) AV_PIX_FMT_YUV422P16, AV_PIX_FMT_YUV444P16, AV_PIX_FMT_YUVA420P, + AV_PIX_FMT_YUVA422P, + AV_PIX_FMT_YUVA444P, AV_PIX_FMT_NONE }; AVFilterFormats *fmts_list = ff_make_format_list(pix_fmts);