summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOscar Mateo <oscar.mateo@intel.com>2013-05-22 14:00:39 +0100
committerGwenole Beauchesne <gwenole.beauchesne@intel.com>2013-08-27 11:16:44 +0200
commit2a5258204d71cd9eee0eb1142dade0a3fc9a8121 (patch)
tree178d3f70b2332c4b3d5aab0bdbbd7663aae3f184
parent61a384af1e8763903aa0c519b43a1f09dfb5178a (diff)
downloadlibva-2a5258204d71cd9eee0eb1142dade0a3fc9a8121.tar.gz
va: Add new color standard types to VPP
The four new color standards are: sRGB full range RGB [0,255] stRGB limited range RGB [16,235] xvYCC601 extended-gamut YCC upwardly compatible with BT.601 xvYCC709 extended-gamut YCC upwardly compatible with BT.709 Signed-off-by: Oscar Mateo <oscar.mateo@intel.com>
-rw-r--r--va/va_vpp.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/va/va_vpp.h b/va/va_vpp.h
index 4f98104..4522657 100644
--- a/va/va_vpp.h
+++ b/va/va_vpp.h
@@ -312,6 +312,14 @@ typedef enum _VAProcColorStandardType {
VAProcColorStandardSMPTE240M,
/** \brief Generic film. */
VAProcColorStandardGenericFilm,
+ /** \brief sRGB. */
+ VAProcColorStandardSRGB,
+ /** \brief stRGB. */
+ VAProcColorStandardSTRGB,
+ /** \brief xvYCC601. */
+ VAProcColorStandardXVYCC601,
+ /** \brief xvYCC709. */
+ VAProcColorStandardXVYCC709,
/** \brief Number of color standards. */
VAProcColorStandardCount
} VAProcColorStandardType;