Home
last modified time | relevance | path

Searched refs:zthresh_ (Results 1 – 9 of 9) sorted by relevance

/external/webp/src/enc/
Dvp8enci.h186 uint32_t zthresh_[16]; // value below which a coefficient is zeroed member
Dquant.c220 m->zthresh_[i] = ((1 << QFIX) - 1 - m->bias_[i]) / m->iq_[i]; in ExpandMatrix()
226 m->zthresh_[i] = m->zthresh_[1]; in ExpandMatrix()
/external/opencv3/3rdparty/libwebp/enc/
Dvp8enci.h240 uint16_t zthresh_[16]; // value under which a coefficient is zeroed member
Dquant.c155 m->zthresh_[j] = ((256 /*+ kCoeffThresh[j]*/ - bias) * m->q_[j] + 127) >> 8; in ExpandMatrix()
/external/webp/src/dsp/
Denc.c632 if (coeff > mtx->zthresh_[j]) { in QuantizeBlock()
666 if (coeff > mtx->zthresh_[j]) { in QuantizeBlockWHT()
Denc_mips32.c199 const uint32_t* ppzthresh = &mtx->zthresh_[0]; in QuantizeBlock()
Denc_mips_dsp_r2.c1284 const uint32_t* ppzthresh = &mtx->zthresh_[0]; in QuantizeBlock()
/external/opencv3/3rdparty/libwebp/dsp/
Denc_sse2.c833 const __m128i zthresh0 = _mm_loadu_si128((__m128i*)&mtx->zthresh_[0]); in QuantizeBlockSSE2()
834 const __m128i zthresh8 = _mm_loadu_si128((__m128i*)&mtx->zthresh_[8]); in QuantizeBlockSSE2()
Denc.c638 if (coeff > mtx->zthresh_[j]) { in QuantizeBlock()