diff options
author | Jonathan Bian <jonathan.bian@intel.com> | 2013-03-31 17:14:50 -0700 |
---|---|---|
committer | Xiang, Haihao <haihao.xiang@intel.com> | 2013-05-28 16:32:18 +0800 |
commit | 5fd07b270404d83303c851982cf1369b95710ef6 (patch) | |
tree | 99bceb33689f1ed57fc466f9799f5b7525c84dfd /va | |
parent | 8ff89a5662b308890e230ceddeae35f61fbd1e24 (diff) |
Renamed de-interlacing flags to be more general and added new flag VA_DEINTERLACING_ONE_FIELD
Diffstat (limited to 'va')
-rw-r--r-- | va/va_vpp.h | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/va/va_vpp.h b/va/va_vpp.h index b24d1a1..63e72c4 100644 --- a/va/va_vpp.h +++ b/va/va_vpp.h @@ -540,14 +540,19 @@ typedef struct _VAProcFilterParameterBuffer { /**@{*/ /** * \brief Bottom field first in the input frame. - * if this is not set then assums top field first. + * if this is not set then assumes top field first. */ -#define VA_DEINTERLACING_INPUT_BOTTOM_FIELD_FIRST 0x0001 +#define VA_DEINTERLACING_BOTTOM_FIELD_FIRST 0x0001 /** - * \brief Bottom field used in BOB deinterlacing. - * if this is not set then assums top field is used. + * \brief Bottom field used in deinterlacing. + * if this is not set then assumes top field is used. */ -#define VA_DEINTERLACING_BOB_BOTTOM_FIELD 0x0002 +#define VA_DEINTERLACING_BOTTOM_FIELD 0x0002 +/** + * \brief A single field is stored in the input frame. + * if this is not set then assumes the frame contains two interleaved fields. + */ +#define VA_DEINTERLACING_ONE_FIELD 0x0004 /**@}*/ /** \brief Deinterlacing filter parametrization. */ |