[FFmpeg-cvslog] avfilter/vf_spp: add support for 9bit YUV and GBR as well as GBRP10
Michael Niedermayer
git at videolan.org
Sat Dec 20 18:52:08 CET 2014
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Dec 20 18:33:52 2014 +0100| [988ca9bd53c0bd240383ccf7b0ca0eb7224a8ff5] | committer: Michael Niedermayer
avfilter/vf_spp: add support for 9bit YUV and GBR as well as GBRP10
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=988ca9bd53c0bd240383ccf7b0ca0eb7224a8ff5
---
libavfilter/vf_spp.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/libavfilter/vf_spp.c b/libavfilter/vf_spp.c
index 68957b1..67dc800 100644
--- a/libavfilter/vf_spp.c
+++ b/libavfilter/vf_spp.c
@@ -321,8 +321,12 @@ static int query_formats(AVFilterContext *ctx)
AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ440P,
AV_PIX_FMT_YUV444P10, AV_PIX_FMT_YUV422P10,
AV_PIX_FMT_YUV420P10,
+ AV_PIX_FMT_YUV444P9, AV_PIX_FMT_YUV422P9,
+ AV_PIX_FMT_YUV420P9,
AV_PIX_FMT_GRAY8,
AV_PIX_FMT_GBRP,
+ AV_PIX_FMT_GBRP9,
+ AV_PIX_FMT_GBRP10,
AV_PIX_FMT_NONE
};
ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
More information about the ffmpeg-cvslog
mailing list