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() local
92 const int width = alph_dec->width_; in ALPHDecode()
93 const int height = alph_dec->height_; in ALPHDecode()
94 WebPUnfilterFunc unfilter_func = WebPUnfilters[alph_dec->filter_]; in ALPHDecode()
96 if (alph_dec->method_ == ALPHA_NO_COMPRESSION) { in ALPHDecode()
103 assert(alph_dec->vp8l_dec_ != NULL); in ALPHDecode()
104 if (!VP8LDecodeAlphaImageStream(alph_dec, row + num_rows)) { in ALPHDecode()
Dvp8l.c1460 int VP8LDecodeAlphaHeader(ALPHDecoder* const alph_dec, in VP8LDecodeAlphaHeader() argument
1466 assert(alph_dec != NULL); in VP8LDecodeAlphaHeader()
1467 alph_dec->vp8l_dec_ = VP8LNew(); in VP8LDecodeAlphaHeader()
1468 if (alph_dec->vp8l_dec_ == NULL) return 0; in VP8LDecodeAlphaHeader()
1469 dec = alph_dec->vp8l_dec_; in VP8LDecodeAlphaHeader()
1471 dec->width_ = alph_dec->width_; in VP8LDecodeAlphaHeader()
1472 dec->height_ = alph_dec->height_; in VP8LDecodeAlphaHeader()
1473 dec->io_ = &alph_dec->io_; in VP8LDecodeAlphaHeader()
1479 io->width = alph_dec->width_; in VP8LDecodeAlphaHeader()
1480 io->height = alph_dec->height_; in VP8LDecodeAlphaHeader()
[all …]
Dvp8li.h102 int VP8LDecodeAlphaHeader(struct ALPHDecoder* const alph_dec,
110 int VP8LDecodeAlphaImageStream(struct ALPHDecoder* const alph_dec,
Didec.c140 ALPHDecoder* const alph_dec = dec->alph_dec_; in DoRemap() local
142 if (alph_dec != NULL) { in DoRemap()
143 if (alph_dec->method_ == ALPHA_LOSSLESS_COMPRESSION) { in DoRemap()
144 VP8LDecoder* const alph_vp8l_dec = alph_dec->vp8l_dec_; in DoRemap()