Searched refs:alph_dec_ (Results 1 – 3 of 3) sorted by relevance
111 ALPHDecoder* const alph_dec = dec->alph_dec_; in ALPHDecode()170 ALPHDelete(dec->alph_dec_); in WebPDeallocateAlphaMemory()171 dec->alph_dec_ = NULL; in WebPDeallocateAlphaMemory()190 if (dec->alph_dec_ == NULL) { // Initialize decoder. in VP8DecompressAlphaRows()191 dec->alph_dec_ = ALPHNew(); in VP8DecompressAlphaRows()192 if (dec->alph_dec_ == NULL) return NULL; in VP8DecompressAlphaRows()194 if (!ALPHInit(dec->alph_dec_, dec->alpha_data_, dec->alpha_data_size_, in VP8DecompressAlphaRows()199 if (dec->alph_dec_->pre_processing_ != ALPHA_PREPROCESSED_LEVELS) { in VP8DecompressAlphaRows()206 assert(dec->alph_dec_ != NULL); in VP8DecompressAlphaRows()211 ALPHDelete(dec->alph_dec_); in VP8DecompressAlphaRows()[all …]
257 struct ALPHDecoder* alph_dec_; // alpha-plane decoder object member
141 ALPHDecoder* const alph_dec = dec->alph_dec_; in DoRemap()