Home
last modified time | relevance | path

Searched refs:nz_ (Results 1 – 6 of 6) sorted by relevance

/external/webp/src/enc/
Diterator.c38 memset(enc->nz_, 0, enc->mb_w_ * sizeof(*enc->nz_)); in InitTop()
49 it->nz_ = enc->nz_; in VP8IteratorReset()
190 const int tnz = it->nz_[0], lnz = it->nz_[-1]; in VP8IteratorNzToBytes()
237 *it->nz_ = nz; in VP8IteratorBytesToNz()
274 it->nz_++; in VP8IteratorNext()
281 it->nz_ = enc->nz_; in VP8IteratorNext()
Dvp8enci.h281 uint32_t* nz_; // non-zero pattern member
434 uint32_t* nz_; // non-zero bit context: mb_w+1 member
Dwebpenc.c93 enc->nz_[-1] = 0; // constant in ResetBoundaryPredictions()
246 enc->nz_ = 1 + (uint32_t*)mem; in InitVP8Encoder()
Dframe.c857 *it->nz_ = 0; // reset all predictors in ResetAfterSkip()
860 *it->nz_ &= (1 << 24); // preserve the dc_nz bit in ResetAfterSkip()
/external/webp/src/dec/
Dvp8.c579 tnz = kUnpackTab[mb->nz_ & 0xf]; in ParseResiduals()
580 lnz = kUnpackTab[left_mb->nz_ & 0xf]; in ParseResiduals()
599 tnz = kUnpackTab[mb->nz_ >> 4]; in ParseResiduals()
600 lnz = kUnpackTab[left_mb->nz_ >> 4]; in ParseResiduals()
621 mb->nz_ = out_t_nz; in ParseResiduals()
622 left_mb->nz_ = out_l_nz; in ParseResiduals()
656 left->nz_ = info->nz_ = 0; in VP8DecodeMB()
675 left->nz_ = 0; in VP8InitScanline()
Dvp8i.h160 unsigned int nz_:24; // non-zero AC/DC coeffs (24bit) member