summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-10-31 02:14:16 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-10-31 03:10:35 +0100
commit0e4d34e087e708a0211671b56418440de7847be6 (patch)
treea1a443fc789714b472c9b617a6daf11b8990c757 /libavcodec
parent6c49562d790e9068ddcbb36197d7b24ab10c6274 (diff)
pix_fmt_info: add 9/10 bit YUVA formats
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/imgconvert.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c
index 13a0431c5c..de64b87743 100644
--- a/libavcodec/imgconvert.c
+++ b/libavcodec/imgconvert.c
@@ -193,6 +193,42 @@ static const PixFmtInfo pix_fmt_info[AV_PIX_FMT_NB] = {
[AV_PIX_FMT_YUVA444P] = {
.color_type = FF_COLOR_YUV,
},
+ [AV_PIX_FMT_YUVA420P9LE] = {
+ .color_type = FF_COLOR_YUV,
+ },
+ [AV_PIX_FMT_YUVA422P9LE] = {
+ .color_type = FF_COLOR_YUV,
+ },
+ [AV_PIX_FMT_YUVA444P9LE] = {
+ .color_type = FF_COLOR_YUV,
+ },
+ [AV_PIX_FMT_YUVA420P9BE] = {
+ .color_type = FF_COLOR_YUV,
+ },
+ [AV_PIX_FMT_YUVA422P9BE] = {
+ .color_type = FF_COLOR_YUV,
+ },
+ [AV_PIX_FMT_YUVA444P9BE] = {
+ .color_type = FF_COLOR_YUV,
+ },
+ [AV_PIX_FMT_YUVA420P10LE] = {
+ .color_type = FF_COLOR_YUV,
+ },
+ [AV_PIX_FMT_YUVA422P10LE] = {
+ .color_type = FF_COLOR_YUV,
+ },
+ [AV_PIX_FMT_YUVA444P10LE] = {
+ .color_type = FF_COLOR_YUV,
+ },
+ [AV_PIX_FMT_YUVA420P10BE] = {
+ .color_type = FF_COLOR_YUV,
+ },
+ [AV_PIX_FMT_YUVA422P10BE] = {
+ .color_type = FF_COLOR_YUV,
+ },
+ [AV_PIX_FMT_YUVA444P10BE] = {
+ .color_type = FF_COLOR_YUV,
+ },
/* JPEG YUV */
[AV_PIX_FMT_YUVJ420P] = {