summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldo Bastian <waldo.bastian@intel.com>2007-10-15 11:10:21 -0700
committerWaldo Bastian <waldo.bastian@intel.com>2007-10-15 11:10:21 -0700
commit2a2139bc1894016076d0009c4a34d891055fc6b3 (patch)
tree19d1fa795b5955306a4324eb43d57fd5d2257178
parenta0c4efd20ed135e071ad4e8132868fd4265d9954 (diff)
downloadlibva-2a2139bc1894016076d0009c4a34d891055fc6b3.tar.gz
pic_quantizer_scale needs 5 bits instead of 1
-rwxr-xr-xsrc/va.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/va.h b/src/va.h
index 66cc7a0..66acf76 100755
--- a/src/va.h
+++ b/src/va.h
@@ -728,7 +728,7 @@ typedef struct _VAPictureParameterBufferVC1
struct {
unsigned char dquant : 2; /* ENTRY_POINT_LAYER::DQUANT */
unsigned char half_qp : 1; /* PICTURE_LAYER::HALFQP */
- unsigned char pic_quantizer_scale : 1;/* PICTURE_LAYER::PQUANT */
+ unsigned char pic_quantizer_scale : 5;/* PICTURE_LAYER::PQUANT */
unsigned char pic_quantizer_type : 1;/* PICTURE_LAYER::PQUANTIZER */
unsigned char dq_frame : 1; /* VOPDQUANT::DQUANTFRM */
unsigned char dq_profile : 2; /* VOPDQUANT::DQPROFILE */