diff options
author | Waldo Bastian <waldo.bastian@intel.com> | 2007-09-14 09:18:26 -0700 |
---|---|---|
committer | Waldo Bastian <waldo.bastian@intel.com> | 2007-09-14 09:18:26 -0700 |
commit | c38259e07c1e03d4967d773475734cb2b8486c5a (patch) | |
tree | 7758c17381e4a9dec3d016be550dcaafa14e05a1 /src/va.h | |
parent | 42c28c46f7f20f153d61f08f70f967c9ff96c5e9 (diff) | |
download | libva-c38259e07c1e03d4967d773475734cb2b8486c5a.tar.gz |
Fix sign of some H264 params
Diffstat (limited to 'src/va.h')
-rwxr-xr-x | src/va.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -820,9 +820,9 @@ typedef struct _VAPictureParameterBufferH264 }; unsigned char num_slice_groups_minus1; unsigned char slice_group_map_type; - unsigned char pic_init_qp_minus26; - unsigned char chroma_qp_index_offset; - unsigned char second_chroma_qp_index_offset; + signed char pic_init_qp_minus26; + signed char chroma_qp_index_offset; + signed char second_chroma_qp_index_offset; union { struct { unsigned char entropy_coding_mode_flag : 1; |