mirror of
https://github.com/webmproject/libwebp.git
synced 2025-07-13 14:34:33 +02:00
reduce memory for VP8MB and remove bitfields use
~1% faster on ARMv7 Change-Id: I3e3524e0c25ebd31a04269aae0d304932f1a781a
This commit is contained in:
@ -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_;
|
||||
|
Reference in New Issue
Block a user