diff options
author | Robert Nagy <ronag89@gmail.com> | 2018-01-13 16:51:43 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2018-01-14 23:19:01 +0100 |
commit | 856b7cae9f40c094be6a1dfa73eb57295838496c (patch) | |
tree | f7660f5cb0981da1e54d8648964541d6715b8caf /libavfilter | |
parent | 57dbabd9c13b9770d2447a2168a1acccd7296827 (diff) | |
download | ffmpeg-856b7cae9f40c094be6a1dfa73eb57295838496c.tar.gz |
avfilter/vf_idet: added more YUVA formats to idet query_formats
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_idet.c | 2 |
1 files changed, 2 insertions, 0 deletions
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); |