diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-09-05 14:06:17 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-09-05 14:06:17 +0200 |
commit | a67dcd74abd2812ab2cc0dcbf54079b2d38e84d6 (patch) | |
tree | bd552b70e4cd8212afc1e0d5a2f314117de91f65 /libavfilter | |
parent | 2230d85cebee829ad773e6bf0873fca98d7bc410 (diff) | |
download | ffmpeg-a67dcd74abd2812ab2cc0dcbf54079b2d38e84d6.tar.gz |
avfilter/vf_yadif: add gbr(a)p support
Suggested-by: durandal_1707
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_yadif.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/vf_yadif.c b/libavfilter/vf_yadif.c index 71165535d9..8f851e7bbe 100644 --- a/libavfilter/vf_yadif.c +++ b/libavfilter/vf_yadif.c @@ -447,6 +447,8 @@ static int query_formats(AVFilterContext *ctx) AV_PIX_FMT_YUVA420P, AV_PIX_FMT_YUVA422P, AV_PIX_FMT_YUVA444P, + AV_PIX_FMT_GBRP, + AV_PIX_FMT_GBRAP, AV_PIX_FMT_NONE }; |