diff options
author | Wayne Zou <b36644@freescale.com> | 2012-07-03 16:59:52 +0800 |
---|---|---|
committer | Wayne Zou <b36644@freescale.com> | 2012-07-27 13:48:08 +0800 |
commit | 099d57c31a62f2d38d47518439bca9929546328c (patch) | |
tree | 3c8dc0ae1374fa517dfdf114e99abeb52de096bd /include | |
parent | 70ffc23a93bb9bdb007e32cb07b14283b48a0559 (diff) |
ENGR00182743-1 IPU: Add non-interleaved YUV444 pixel format support
Define IPU_PIX_FMT_YUV444P macro for non-interleaved YUV444 pixel format
Signed-off-by: Wayne Zou <b36644@freescale.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/ipu.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/ipu.h b/include/linux/ipu.h index e0c9e90c2804..f8178f1b0473 100644 --- a/include/linux/ipu.h +++ b/include/linux/ipu.h @@ -139,6 +139,8 @@ typedef enum { #define IPU_PIX_FMT_YUV420P2 fourcc('Y', 'U', '1', '2') /*!< 12 YUV 4:2:0 */ #define IPU_PIX_FMT_YVU422P fourcc('Y', 'V', '1', '6') /*!< 16 YVU 4:2:2 */ #define IPU_PIX_FMT_YUV422P fourcc('4', '2', '2', 'P') /*!< 16 YUV 4:2:2 */ +/* non-interleaved 4:4:4 */ +#define IPU_PIX_FMT_YUV444P fourcc('4', '4', '4', 'P') /*!< 24 YUV 4:4:4 */ /*! @} */ #define IPU_PIX_FMT_TILED_NV12_MBALIGN (16) #define TILED_NV12_FRAME_SIZE(w, h) \ |