Home
last modified time | relevance | path

Searched refs:argb_ (Results 1 – 4 of 4) sorted by relevance

/external/webp/src/enc/
Dvp8l.c643 const uint32_t* const argb = enc->argb_; in EvalAndApplySubtractGreen()
671 VP8LSubtractGreenFromBlueAndRed(enc->argb_, width * height); in EvalAndApplySubtractGreen()
684 VP8LResidualImage(width, height, pred_bits, enc->argb_, enc->argb_scratch_, in ApplyPredictFilter()
706 enc->argb_, enc->transform_data_); in ApplyCrossColorFilter()
803 enc->argb_ = mem; in AllocateTransformBuffer()
862 dst = enc->argb_; in ApplyPalette()
946 free(enc->argb_); in VP8LEncoderDelete()
986 if (enc->argb_ == NULL) { in VP8LEncodeStream()
991 memcpy(enc->argb_ + y * width, in VP8LEncodeStream()
993 width * sizeof(*enc->argb_)); in VP8LEncodeStream()
[all …]
Dvp8li.h28 uint32_t* argb_; // Transformed argb image data. member
/external/webp/src/dec/
Dvp8l.c631 const uint32_t* const rows = dec->argb_ + dec->width_ * dec->last_row_; in ProcessRows()
906 free(dec->argb_); in VP8LClear()
907 dec->argb_ = NULL; in VP8LClear()
1044 dec->argb_ = (uint32_t*)WebPSafeMalloc(total_num_pixels, sizeof(*dec->argb_)); in AllocateARGBBuffers()
1045 if (dec->argb_ == NULL) { in AllocateARGBBuffers()
1050 dec->argb_cache_ = dec->argb_ + num_pixels + cache_top_pixels; in AllocateARGBBuffers()
1059 const uint32_t* const in = dec->argb_ + dec->width_ * dec->last_row_; in ExtractAlphaRows()
1105 ok = DecodeImageData(dec, dec->argb_, dec->width_, dec->height_, in VP8LDecodeAlphaImageStream()
1171 if (!DecodeImageData(dec, dec->argb_, dec->width_, dec->height_, in VP8LDecodeImage()
Dvp8li.h66 uint32_t *argb_; // Internal data: always in BGRA color mode. member