summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-12-20 18:33:52 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-12-20 18:33:52 +0100
commit988ca9bd53c0bd240383ccf7b0ca0eb7224a8ff5 (patch)
tree97a4584b18ca06fdbee4332b9352dd1437755089 /libavfilter
parent88c1869afe7076e1e60d08c5458e219601b21e67 (diff)
avfilter/vf_spp: add support for 9bit YUV and GBR as well as GBRP10
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_spp.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavfilter/vf_spp.c b/libavfilter/vf_spp.c
index 68957b1b4f..67dc80000a 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));