OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
844
static void AlphaApplyFilter(ALPHDecoder* const
alph_dec
,
847
if (
alph_dec
->filter_ != WEBP_FILTER_NONE) {
849
const uint8_t* prev_line =
alph_dec
->prev_line_;
850
assert(WebPUnfilters[
alph_dec
->filter_] != NULL);
852
WebPUnfilters[
alph_dec
->filter_](prev_line, out, out, stride);
856
alph_dec
->prev_line_ = prev_line;
863
ALPHDecoder* const
alph_dec
= (ALPHDecoder*)dec->io_->opaque;
local
865
(
alph_dec
->filter_ == WEBP_FILTER_NONE ||
866
alph_dec
->filter_ == WEBP_FILTER_HORIZONTAL) ? dec->io_->crop_top
873
uint8_t* out =
alph_dec
->output_ + width * first_row
1553
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 &&
alph_dec
->vp8l_dec_ != NULL) {
144
if (
alph_dec
->method_ == ALPHA_LOSSLESS_COMPRESSION) {
145
VP8LDecoder* const alph_vp8l_dec =
alph_dec
->vp8l_dec_;
150
} else { //
alph_dec
->method_ == ALPHA_NO_COMPRESSION
Completed in 617 milliseconds