HomeSort by relevance Sort by last modified time
    Searched refs:nz_coeffs (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/libwebp/dec/
vp8.c 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; local
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; local
522 nz_coeffs = NzCodeBits(nz_coeffs, nz, dst[0] != 0)
    [all...]
  /external/webp/src/dec/
vp8.c 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; local
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; local
522 nz_coeffs = NzCodeBits(nz_coeffs, nz, dst[0] != 0)
    [all...]

Completed in 40 milliseconds