Searched defs:alph_dec (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/libwebp/dec/
H A Dalpha.c89 ALPHDecoder* const alph_dec = dec->alph_dec_; local
90 const int width = alph_dec->width_;
91 const int height = alph_dec->height_;
92 WebPUnfilterFunc unfilter_func = WebPUnfilters[alph_dec->filter_];
94 if (alph_dec->method_ == ALPHA_NO_COMPRESSION) {
100 } else { // alph_dec->method_ == ALPHA_LOSSLESS_COMPRESSION
101 assert(alph_dec->vp8l_dec_ != NULL);
102 if (!VP8LDecodeAlphaImageStream(alph_dec, row + num_rows)) {
H A Didec.c136 ALPHDecoder* const alph_dec = dec->alph_dec_; local
138 if (alph_dec != NULL) {
139 if (alph_dec->method_ == ALPHA_LOSSLESS_COMPRESSION) {
140 VP8LDecoder* const alph_vp8l_dec = alph_dec->vp8l_dec_;
146 } else { // alph_dec->method_ == ALPHA_NO_COMPRESSION
H A Dvp8l.c1245 int VP8LDecodeAlphaHeader(ALPHDecoder* const alph_dec, argument
1251 assert(alph_dec != NULL);
1252 alph_dec->vp8l_dec_ = VP8LNew();
1253 if (alph_dec->vp8l_dec_ == NULL) return 0;
1254 dec = alph_dec->vp8l_dec_;
1256 dec->width_ = alph_dec->width_;
1257 dec->height_ = alph_dec->height_;
1258 dec->io_ = &alph_dec->io_;
1264 io->width = alph_dec->width_;
1265 io->height = alph_dec
1300 VP8LDecodeAlphaImageStream(ALPHDecoder* const alph_dec, int last_row) argument
[all...]
/external/webp/src/dec/
H A Dalpha.c89 ALPHDecoder* const alph_dec = dec->alph_dec_; local
90 const int width = alph_dec->width_;
91 const int height = alph_dec->height_;
92 WebPUnfilterFunc unfilter_func = WebPUnfilters[alph_dec->filter_];
94 if (alph_dec->method_ == ALPHA_NO_COMPRESSION) {
100 } else { // alph_dec->method_ == ALPHA_LOSSLESS_COMPRESSION
101 assert(alph_dec->vp8l_dec_ != NULL);
102 if (!VP8LDecodeAlphaImageStream(alph_dec, row + num_rows)) {
H A Didec.c136 ALPHDecoder* const alph_dec = dec->alph_dec_; local
138 if (alph_dec != NULL) {
139 if (alph_dec->method_ == ALPHA_LOSSLESS_COMPRESSION) {
140 VP8LDecoder* const alph_vp8l_dec = alph_dec->vp8l_dec_;
146 } else { // alph_dec->method_ == ALPHA_NO_COMPRESSION
H A Dvp8l.c1245 int VP8LDecodeAlphaHeader(ALPHDecoder* const alph_dec, argument
1251 assert(alph_dec != NULL);
1252 alph_dec->vp8l_dec_ = VP8LNew();
1253 if (alph_dec->vp8l_dec_ == NULL) return 0;
1254 dec = alph_dec->vp8l_dec_;
1256 dec->width_ = alph_dec->width_;
1257 dec->height_ = alph_dec->height_;
1258 dec->io_ = &alph_dec->io_;
1264 io->width = alph_dec->width_;
1265 io->height = alph_dec
1300 VP8LDecodeAlphaImageStream(ALPHDecoder* const alph_dec, int last_row) argument
[all...]

Completed in 173 milliseconds