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

  /external/webp/src/enc/
alpha.c 358 size_t alpha_size = 0; local
365 filter, effort_level, &alpha_data, &alpha_size)) {
368 if (alpha_size != (uint32_t)alpha_size) { // Sanity check.
372 enc->alpha_data_size_ = (uint32_t)alpha_size;
  /external/webp/src/dec/
frame.c 551 // alpha_size is the only one that scales as width x height.
552 const uint64_t alpha_size = (dec->alpha_data_ != NULL) ? local
557 + cache_size + alpha_size + ALIGN_MASK;
622 dec->alpha_plane_ = alpha_size ? (uint8_t*)mem : NULL;
623 mem += alpha_size;

Completed in 43 milliseconds