hardware/intel/libva
Revisão | 5fd07b270404d83303c851982cf1369b95710ef6 (tree) |
---|---|
Hora | 2013-05-28 17:32:18 |
Autor | Jonathan Bian <jonathan.bian@inte...> |
Commiter | Xiang, Haihao |
Renamed de-interlacing flags to be more general and added new flag VA_DEINTERLACING_ONE_FIELD
@@ -540,14 +540,19 @@ typedef struct _VAProcFilterParameterBuffer { | ||
540 | 540 | /**@{*/ |
541 | 541 | /** |
542 | 542 | * \brief Bottom field first in the input frame. |
543 | - * if this is not set then assums top field first. | |
543 | + * if this is not set then assumes top field first. | |
544 | 544 | */ |
545 | -#define VA_DEINTERLACING_INPUT_BOTTOM_FIELD_FIRST 0x0001 | |
545 | +#define VA_DEINTERLACING_BOTTOM_FIELD_FIRST 0x0001 | |
546 | 546 | /** |
547 | - * \brief Bottom field used in BOB deinterlacing. | |
548 | - * if this is not set then assums top field is used. | |
547 | + * \brief Bottom field used in deinterlacing. | |
548 | + * if this is not set then assumes top field is used. | |
549 | 549 | */ |
550 | -#define VA_DEINTERLACING_BOB_BOTTOM_FIELD 0x0002 | |
550 | +#define VA_DEINTERLACING_BOTTOM_FIELD 0x0002 | |
551 | +/** | |
552 | + * \brief A single field is stored in the input frame. | |
553 | + * if this is not set then assumes the frame contains two interleaved fields. | |
554 | + */ | |
555 | +#define VA_DEINTERLACING_ONE_FIELD 0x0004 | |
551 | 556 | /**@}*/ |
552 | 557 | |
553 | 558 | /** \brief Deinterlacing filter parametrization. */ |