[FFmpeg-cvslog] pix_fmt_info: add 9/10 bit YUVA formats

Michael Niedermayer git at videolan.org
Wed Oct 31 03:12:52 CET 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Oct 31 02:14:16 2012 +0100| [0e4d34e087e708a0211671b56418440de7847be6] | committer: Michael Niedermayer

pix_fmt_info: add 9/10 bit YUVA formats

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0e4d34e087e708a0211671b56418440de7847be6
---

 libavcodec/imgconvert.c |   36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c
index 13a0431..de64b87 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] = {



More information about the ffmpeg-cvslog mailing list