summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJonas Bengtsson <jonas.l.bengtsson@stericsson.com>2010-09-09 14:25:56 +0200
committerJonas Bengtsson <jonas.l.bengtsson@stericsson.com>2010-09-09 14:25:56 +0200
commit08ad49ceb4106506de61124076362e8d87cb4e28 (patch)
tree0d1db433270a1781d8b563b3ecef9db2751a6606 /include
parent9ceeadba6084ca1378fd43392b45e803f24a827b (diff)
Add property u8500_v2-linux
Change-Id: If3b981e77ac91a662798c406396a12614a98146b Component: linux_b2r2lib:1.0.10:src Published-by: erobfek <robert.fekete@stericsson.com> Published-on: Tue, 07 Sep 2010 16:22:49 +0200 Rodos: rodos 7.2.19
Diffstat (limited to 'include')
-rwxr-xr-x[-rw-r--r--]include/blt_api.h22
1 files changed, 15 insertions, 7 deletions
diff --git a/include/blt_api.h b/include/blt_api.h
index 980b067..3ffcb23 100644..100755
--- a/include/blt_api.h
+++ b/include/blt_api.h
@@ -12,7 +12,7 @@
#ifdef __cplusplus
extern "C" {
-#endif
+#endif
#ifndef _BLT_API_H
#define _BLT_API_H
@@ -96,9 +96,10 @@ enum blt_fmt {
/*BLT_FMT_YUV_411_PACKED_PLANAR = 18,*/
/*BLT_FMT_YUV_420_PLANAR = 19,*/
/**
- * @brief YUV planar format, organized with three separate planes for each
- * color component, namely Y, U, and V. U and V pixels are
- * subsampled by a factor of two both horizontally and vertically.
+ * @brief YUV planar format, organized with three separate planes,
+ * one for each color component, namely Y, U, and V.
+ * U and V pixels are subsampled by a factor of two
+ * both horizontally and vertically.
* The buffer shall contain a plane of Y, U, and V data in this
* order.
*/
@@ -106,9 +107,9 @@ enum blt_fmt {
/*BLT_FMT_YUV420_SEMI_PLANAR = 21,*/
/*BLT_FMT_YUV422_PLANAR = 22,*/
/**
- * @brief YUV planar format, organized with three separate planes for each
- * color component, namely Y, U, and V. U and V pixels are
- * subsampled by a factor of two horizontally.
+ * @brief YUV planar format, organized with three separate planes,
+ * one for each color component, namely Y, U, and V.
+ * U and V pixels are subsampled by a factor of two horizontally.
* The buffer shall contain a plane of Y, U, and V data in this
* order.
*/
@@ -198,6 +199,13 @@ enum blt_fmt {
* @brief 8 bit per pixel alpha format
*/
BLT_FMT_8_BIT_A8 = 0x7F000007,
+ /**
+ * @brief YUV planar format, organized with
+ * three separate planes, one for each color component, namely Y, U, and V.
+ * All planes use full resolution, there is no subsampling.
+ * The buffer shall contain a plane of Y, U, and V data in this order.
+ */
+ BLT_FMT_YUV444_PACKED_PLANAR = 0x7F000008,
};