reduce memory for VP8MB and remove bitfields use

~1% faster on ARMv7

Change-Id: I3e3524e0c25ebd31a04269aae0d304932f1a781a
This commit is contained in:
skal
2013-05-21 23:20:04 +02:00
parent 7413394e7f
commit 91413be2f9
2 changed files with 5 additions and 5 deletions

View File

@ -526,7 +526,8 @@ static const PackedNz kUnpackTab[16] = {
static int ParseResiduals(VP8Decoder* const dec,
VP8MB* const mb, VP8BitReader* const token_br) {
int out_t_nz, out_l_nz, first;
uint32_t out_t_nz, out_l_nz;
int first;
ProbaArray ac_prob;
const VP8QuantMatrix* const q = &dec->dqm_[dec->segment_];
int16_t* dst = dec->coeffs_;