Commit 988ca9bd authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/vf_spp: add support for 9bit YUV and GBR as well as GBRP10

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 88c1869a
......@@ -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));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment