From 8a35b8e2dbdbada50346dea50a3c40314e81554e Mon Sep 17 00:00:00 2001 From: Jonathan Bian Date: Tue, 7 May 2013 16:37:16 -0700 Subject: Added new status flag to VACodedBufferSegment for exchanging private data between the app and the driver. --- va/va.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/va/va.h b/va/va.h index 3702553..9df9ecd 100644 --- a/va/va.h +++ b/va/va.h @@ -1840,6 +1840,16 @@ VAStatus vaBufferSetNumElements ( */ #define VA_CODED_BUF_STATUS_SINGLE_NALU 0x10000000 +/** + * \brief The coded buffer segment contains a private data. + * + * This flag indicates that the coded buffer segment contains + * private data. This flag can be used to exchange private data + * between the client and the driver. Private data should follow + * regular coded data in the coded buffer segement list. + */ +#define VA_CODED_BUF_STATUS_PRIVATE_DATA 0x80000000 + /** * \brief Coded buffer segment. * -- cgit v1.2.1