Home
last modified time | relevance | path

Searched refs:alph_dec_ (Results 1 – 4 of 4) sorted by relevance

/external/webp/src/dec/
Dalpha.c91 ALPHDecoder* const alph_dec = dec->alph_dec_; in ALPHDecode()
134 dec->alph_dec_ = ALPHNew(); in VP8DecompressAlphaRows()
135 if (dec->alph_dec_ == NULL) return NULL; in VP8DecompressAlphaRows()
136 if (!ALPHInit(dec->alph_dec_, dec->alpha_data_, dec->alpha_data_size_, in VP8DecompressAlphaRows()
138 ALPHDelete(dec->alph_dec_); in VP8DecompressAlphaRows()
139 dec->alph_dec_ = NULL; in VP8DecompressAlphaRows()
143 if (dec->alph_dec_->pre_processing_ != ALPHA_PREPROCESSED_LEVELS) { in VP8DecompressAlphaRows()
152 assert(dec->alph_dec_ != NULL); in VP8DecompressAlphaRows()
159 ALPHDelete(dec->alph_dec_); in VP8DecompressAlphaRows()
160 dec->alph_dec_ = NULL; in VP8DecompressAlphaRows()
Dvp8i.h258 struct ALPHDecoder* alph_dec_; // alpha-plane decoder object member
Dvp8.c652 ALPHDelete(dec->alph_dec_); in VP8Clear()
653 dec->alph_dec_ = NULL; in VP8Clear()
Didec.c140 ALPHDecoder* const alph_dec = dec->alph_dec_; in DoRemap()