ref: 939d7d9de8ff4d9e7ec7abdb035d84dd912b48de
parent: d4d843de81cbef3bf6454174b79e608a62218a89
parent: 81eb71f00ce7c08375ec9acc14f0f4c58767b8aa
author: Yaowu Xu <yaowu@google.com>
date: Wed May 4 17:57:12 EDT 2016
Merge "Change to use proper type in vp{9,10}_token_state"
--- a/vp10/encoder/encodemb.c
+++ b/vp10/encoder/encodemb.c
@@ -57,7 +57,7 @@
int error;
int next;
int16_t token;
- short qc;
+ tran_low_t qc;
} vp10_token_state;
// TODO(jimbankoski): experiment to find optimal RD numbers.
--- a/vp9/encoder/vp9_encodemb.c
+++ b/vp9/encoder/vp9_encodemb.c
@@ -59,7 +59,7 @@
int error;
int next;
int16_t token;
- int16_t qc;
+ tran_low_t qc;
} vp9_token_state;
static const int plane_rd_mult[REF_TYPES][PLANE_TYPES] ={ {10, 6}, {8, 7}, };