summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTianmi Chen <tianmi.chen@intel.com>2014-07-22 14:25:21 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-07-22 14:25:21 +0000
commit0f6c32bf34029105c296972987d02dddcb76d950 (patch)
tree9f7e3b206aecd9171cce06c4f8fd0602bc60aa5b
parente1bfe69cc01650f1363df4e346d53cfc4bc7fa7f (diff)
parent7b38de70eec885e25c0603c56732bd80db48e911 (diff)
downloadlibva-0f6c32bf34029105c296972987d02dddcb76d950.tar.gz
am 7b38de70: libva: change the types of all fields in VABoolCoderContextVPX
* commit '7b38de70eec885e25c0603c56732bd80db48e911': libva: change the types of all fields in VABoolCoderContextVPX
-rw-r--r--va/va_dec_vp8.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/va/va_dec_vp8.h b/va/va_dec_vp8.h
index a3526f7..268ed19 100644
--- a/va/va_dec_vp8.h
+++ b/va/va_dec_vp8.h
@@ -51,11 +51,11 @@ extern "C" {
typedef struct _VABoolCoderContextVPX
{
/* partition 0 "range" */
- unsigned short range;
+ unsigned char range;
/* partition 0 "value" */
- unsigned int value;
+ unsigned char value;
/* partition 0 number of shifts before an output byte is available */
- unsigned short count;
+ unsigned char count;
} VABoolCoderContextVPX;
/**