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

  /external/webp/src/enc/
alpha_enc.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/
alpha_dec.c 153 const uint64_t alpha_size = (uint64_t)stride * height; local
156 (uint8_t*)WebPSafeMalloc(alpha_size, sizeof(*dec->alpha_plane_));
frame_dec.c 708 // alpha_size is the only one that scales as width x height.
709 const uint64_t alpha_size = (dec->alpha_data_ != NULL) ? local
714 + cache_size + alpha_size + WEBP_ALIGN_CST;
779 dec->alpha_plane_ = alpha_size ? (uint8_t*)mem : NULL;
780 mem += alpha_size;
webp_dec.c 144 // If an alpha chunk is found, *alpha_data and *alpha_size are set
150 size_t* const alpha_size) {
162 assert(alpha_size != NULL);
164 *alpha_size = 0;
205 *alpha_size = chunk_size;
  /external/webp/src/mux/
muxread.c 378 const size_t alpha_size = need_vp8x ? ChunkDiskSize(wpi->alpha_) : 0; local
380 const size_t size = RIFF_HEADER_SIZE + vp8x_size + alpha_size +

Completed in 99 milliseconds