Home | History | Annotate | Download | only in dec

Lines Matching refs:nz_coeffs

450 static WEBP_INLINE uint32_t NzCodeBits(uint32_t nz_coeffs, int nz, int dc_nz) {
451 nz_coeffs <<= 2;
452 nz_coeffs |= (nz > 3) ? 3 : (nz > 1) ? 2 : dc_nz;
453 return nz_coeffs;
495 uint32_t nz_coeffs = 0;
501 nz_coeffs = NzCodeBits(nz_coeffs, nz, dst[0] != 0);
506 non_zero_y = (non_zero_y << 8) | nz_coeffs;
512 uint32_t nz_coeffs = 0;
522 nz_coeffs = NzCodeBits(nz_coeffs, nz, dst[0] != 0);
529 non_zero_uv |= nz_coeffs << (4 * ch);