Lines Matching full:argb
56 const uint32_t* argb = pic->argb;
59 uint32_t last_pix = ~argb[0]; // so we're sure that last_pix != argb[0]
63 if (argb[x] == last_pix) {
66 last_pix = argb[x];
88 argb += pic->argb_stride;
105 static int AnalyzeEntropy(const uint32_t* argb,
111 uint32_t last_pix = argb[0]; // so we're sure that pix_diff == 0
123 const uint32_t pix = argb[x];
137 last_line = argb;
138 argb += argb_stride;
148 assert(pic != NULL && pic->argb != NULL);
165 if (!AnalyzeEntropy(pic->argb, pic->width, pic->height, pic->argb_stride,
473 const uint32_t* const argb,
483 // Calculate backward references from ARGB image.
484 if (!VP8LGetBackwardReferences(width, height, argb, quality, 0, 1, &refs)) {
520 const uint32_t* const argb,
547 // Calculate backward references from ARGB image.
548 if (!VP8LGetBackwardReferences(width, height, argb, quality, cache_bits,
645 const uint32_t* const argb = enc->argb_;
652 const uint32_t c = argb[i];
660 const uint32_t c = argb[i];
787 // Allocates the memory for argb (W x H) buffer, 2 rows of context for
845 // Use 1 pixel cache for ARGB pixels.
877 uint32_t* src = pic->argb;
1012 picture->argb + y * picture->argb_stride,
1092 if (config == NULL || picture->argb == NULL) {