Searched refs:alpha_size (Results 1 - 3 of 3) sorted by relevance

/external/webp/src/enc/
H A Dalpha.c358 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/
H A Dframe.c551 // 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;
H A Dwebp.c151 // If an alpha chunk is found, *alpha_data and *alpha_size are set
157 size_t* const alpha_size) {
169 assert(alpha_size != NULL);
171 *alpha_size = 0;
212 *alpha_size = chunk_size;
153 ParseOptionalChunks(const uint8_t** const data, size_t* const data_size, size_t const riff_size, const uint8_t** const alpha_data, size_t* const alpha_size) argument

Completed in 294 milliseconds