diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-12-13 05:33:19 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-12-13 05:48:28 +0100 |
commit | 792a5004a14ebcb54791a16b4d9be5354585c7e6 (patch) | |
tree | b2601b8f2412e666298fb90d63f3f1ba68252709 /libavfilter/vf_uspp.c | |
parent | b898c49ba1b60e77780f5b28d6200f984c27dc98 (diff) | |
download | ffmpeg-792a5004a14ebcb54791a16b4d9be5354585c7e6.tar.gz |
avfilter/vf_uspp: Add grayscale support
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_uspp.c')
-rw-r--r-- | libavfilter/vf_uspp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/vf_uspp.c b/libavfilter/vf_uspp.c index 7526fde806..c275862861 100644 --- a/libavfilter/vf_uspp.c +++ b/libavfilter/vf_uspp.c @@ -294,6 +294,7 @@ static int query_formats(AVFilterContext *ctx) AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ420P, + AV_PIX_FMT_GRAY8, AV_PIX_FMT_NONE }; ff_set_common_formats(ctx, ff_make_format_list(pix_fmts)); |