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

  /external/webp/src/dec/
alpha.c 101 dec->alpha_data_ + ALPHA_HEADER_LEN + offset, num_pixels);
136 if (!ALPHInit(dec->alph_dec_, dec->alpha_data_, dec->alpha_data_size_,
vp8i.h 259 const uint8_t* alpha_data_; // compressed alpha data (if present) member in struct:VP8Decoder
261 int is_alpha_decoded_; // true if alpha_data_ is decoded in alpha_plane_
idec.c 106 return (dec->alpha_data_ != NULL) && !dec->is_alpha_decoded_;
141 dec->alpha_data_ += offset;
148 dec->alpha_data_ + ALPHA_HEADER_LEN,
171 need_compressed_alpha ? dec->alpha_data_ : old_start;
324 dec->alpha_data_ = headers.alpha_data;
frame.c 462 if (dec->alpha_data_ != NULL && y_start < y_end) {
463 // TODO(skal): testing presence of alpha with dec->alpha_data_ is not a
719 const uint64_t alpha_size = (dec->alpha_data_ != NULL) ?
webp.c 473 dec->alpha_data_ = headers.alpha_data;
  /external/opencv3/3rdparty/libwebp/dec/
alpha.c 102 if (!DecodeAlpha(dec->alpha_data_, (size_t)dec->alpha_data_size_,
vp8i.h 279 const uint8_t* alpha_data_; // compressed alpha data (if present) member in struct:VP8Decoder
281 int is_alpha_decoded_; // true if alpha_data_ is decoded in alpha_plane_
idec.c 115 return (dec->alpha_data_ != NULL) && !dec->is_alpha_decoded_;
144 if (NeedCompressedAlpha(idec)) dec->alpha_data_ += offset;
161 need_compressed_alpha ? dec->alpha_data_ : old_start;
320 dec->alpha_data_ = headers.alpha_data;
frame.c 203 if (dec->alpha_data_ != NULL && y_start < y_end) {
205 // * testing presence of alpha with dec->alpha_data_ is not a good idea
208 // * we could free alpha_data_ right after this call, but we don't own.
427 const uint64_t alpha_size = (dec->alpha_data_ != NULL) ?
vp8.c 275 if (dec->alpha_data_ == NULL) {
278 // (This is to ensure that dec->alpha_data_ is NOT reset to NULL if
281 dec->alpha_data_ = headers.alpha_data;
webp.c 440 dec->alpha_data_ = headers.alpha_data;
  /external/opencv3/3rdparty/libwebp/enc/
alpha.c 348 enc->alpha_data_ = alpha_data;
355 enc->alpha_data_ = NULL;
399 free(enc->alpha_data_);
400 enc->alpha_data_ = NULL;
vp8enci.h 397 uint8_t* alpha_data_; // non-NULL if transparency is present member in struct:VP8Encoder
syntax.c 95 if (!pic->writer(enc->alpha_data_, enc->alpha_data_size_, pic)) {
  /external/webp/src/enc/
alpha.c 370 enc->alpha_data_ = alpha_data;
378 enc->alpha_data_ = NULL;
425 WebPSafeFree(enc->alpha_data_);
426 enc->alpha_data_ = NULL;
vp8enci.h 371 uint8_t* alpha_data_; // non-NULL if transparency is present member in struct:VP8Encoder
syntax.c 91 if (!pic->writer(enc->alpha_data_, enc->alpha_data_size_, pic)) {

Completed in 383 milliseconds