Commit 8f82bf2b authored by Waldo Bastian's avatar Waldo Bastian

* foward_mb -> forward_mb

* Expand mv_mode from 2 to 3 bits
parent 2a2139bc
...@@ -694,7 +694,7 @@ typedef struct _VAPictureParameterBufferVC1 ...@@ -694,7 +694,7 @@ typedef struct _VAPictureParameterBufferVC1
unsigned char direct_mb : 1; /* PICTURE::DIRECTMB */ unsigned char direct_mb : 1; /* PICTURE::DIRECTMB */
unsigned char skip_mb : 1; /* PICTURE::SKIPMB */ unsigned char skip_mb : 1; /* PICTURE::SKIPMB */
unsigned char field_tx : 1; /* PICTURE::FIELDTX */ unsigned char field_tx : 1; /* PICTURE::FIELDTX */
unsigned char foward_mb : 1; /* PICTURE::FORWARDMB */ unsigned char forward_mb : 1; /* PICTURE::FORWARDMB */
unsigned char ac_pred : 1; /* PICTURE::ACPRED */ unsigned char ac_pred : 1; /* PICTURE::ACPRED */
unsigned char overflags : 1; /* PICTURE::OVERFLAGS */ unsigned char overflags : 1; /* PICTURE::OVERFLAGS */
}; };
...@@ -711,8 +711,8 @@ typedef struct _VAPictureParameterBufferVC1 ...@@ -711,8 +711,8 @@ typedef struct _VAPictureParameterBufferVC1
}; };
union { union {
struct { struct {
unsigned char mv_mode : 2; /* PICTURE_LAYER::MVMODE */ unsigned char mv_mode : 3; /* PICTURE_LAYER::MVMODE */
unsigned char mv_mode2 : 2; /* PICTURE_LAYER::MVMODE2 */ unsigned char mv_mode2 : 3; /* PICTURE_LAYER::MVMODE2 */
unsigned char mv_table : 3;/* PICTURE_LAYER::MVTAB/IMVTAB */ unsigned char mv_table : 3;/* PICTURE_LAYER::MVTAB/IMVTAB */
unsigned char two_mv_block_pattern_table: 2;/* PICTURE_LAYER::2MVBPTAB */ unsigned char two_mv_block_pattern_table: 2;/* PICTURE_LAYER::2MVBPTAB */
unsigned char four_mv_switch: 1; /* PICTURE_LAYER::4MVSWITCH */ unsigned char four_mv_switch: 1; /* PICTURE_LAYER::4MVSWITCH */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment