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

  /external/webp/src/dec/
alpha_dec.c 117 const uint8_t* deltas = dec->alpha_data_ + ALPHA_HEADER_LEN + row * width;
119 assert(deltas <= &dec->alpha_data_[dec->alpha_data_size_]);
194 if (!ALPHInit(dec->alph_dec_, dec->alpha_data_, dec->alpha_data_size_,
vp8i_dec.h 258 const uint8_t* alpha_data_; // compressed alpha data (if present) member in struct:VP8Decoder
260 int is_alpha_decoded_; // true if alpha_data_ is decoded in alpha_plane_
idec_dec.c 108 return (dec->alpha_data_ != NULL) && !dec->is_alpha_decoded_;
142 dec->alpha_data_ += offset;
148 dec->alpha_data_ + ALPHA_HEADER_LEN,
171 need_compressed_alpha ? dec->alpha_data_ : old_start;
328 dec->alpha_data_ = headers.alpha_data;
frame_dec.c 452 // If dec->alpha_data_ is not NULL, we have some alpha plane present.
454 if (dec->alpha_data_ != NULL && y_start < y_end) {
700 const uint64_t alpha_size = (dec->alpha_data_ != NULL) ?
webp_dec.c 472 dec->alpha_data_ = headers.alpha_data;
  /external/webp/src/enc/
alpha_enc.c 383 enc->alpha_data_ = alpha_data;
391 enc->alpha_data_ = NULL;
438 WebPSafeFree(enc->alpha_data_);
439 enc->alpha_data_ = NULL;
vp8i_enc.h 373 uint8_t* alpha_data_; // non-NULL if transparency is present member in struct:VP8Encoder
syntax_enc.c 91 if (!pic->writer(enc->alpha_data_, enc->alpha_data_size_, pic)) {

Completed in 261 milliseconds