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

  /external/webp/src/dec/
alpha_dec.c 111 ALPHDecoder* const alph_dec = dec->alph_dec_; local
112 const int width = alph_dec->width_;
113 const int height = alph_dec->io_.crop_bottom;
114 if (alph_dec->method_ == ALPHA_NO_COMPRESSION) {
120 if (alph_dec->filter_ != WEBP_FILTER_NONE) {
121 assert(WebPUnfilters[alph_dec->filter_] != NULL);
123 WebPUnfilters[alph_dec->filter_](prev_line, deltas, dst, width);
137 } else { // alph_dec->method_ == ALPHA_LOSSLESS_COMPRESSION
138 assert(alph_dec->vp8l_dec_ != NULL);
139 if (!VP8LDecodeAlphaImageStream(alph_dec, row + num_rows))
    [all...]
vp8li_dec.h 102 int VP8LDecodeAlphaHeader(struct ALPHDecoder* const alph_dec,
109 int VP8LDecodeAlphaImageStream(struct ALPHDecoder* const alph_dec,
vp8l_dec.c 786 static void AlphaApplyFilter(ALPHDecoder* const alph_dec,
789 if (alph_dec->filter_ != WEBP_FILTER_NONE) {
791 const uint8_t* prev_line = alph_dec->prev_line_;
792 assert(WebPUnfilters[alph_dec->filter_] != NULL);
794 WebPUnfilters[alph_dec->filter_](prev_line, out, out, stride);
798 alph_dec->prev_line_ = prev_line;
805 ALPHDecoder* const alph_dec = (ALPHDecoder*)dec->io_->opaque; local
807 (alph_dec->filter_ == WEBP_FILTER_NONE ||
808 alph_dec->filter_ == WEBP_FILTER_HORIZONTAL) ? dec->io_->crop_top
815 uint8_t* out = alph_dec->output_ + width * first_row
1489 ALPHDecoder* const alph_dec = (ALPHDecoder*)dec->io_->opaque; local
    [all...]
idec_dec.c 141 ALPHDecoder* const alph_dec = dec->alph_dec_; local
143 if (alph_dec != NULL) {
144 if (alph_dec->method_ == ALPHA_LOSSLESS_COMPRESSION) {
145 VP8LDecoder* const alph_vp8l_dec = alph_dec->vp8l_dec_;
151 } else { // alph_dec->method_ == ALPHA_NO_COMPRESSION

Completed in 163 milliseconds