Home | History | Annotate | Download | only in enc

Lines Matching full:argb

52   const uint32_t* argb = pic->argb;
55 uint32_t last_pix = ~argb[0]; // so we're sure that last_pix != argb[0]
59 if (argb[x] == last_pix) {
62 last_pix = argb[x];
84 argb += pic->argb_stride;
101 static int AnalyzeEntropy(const uint32_t* argb,
107 uint32_t last_pix = argb[0]; // so we're sure that pix_diff == 0
114 const uint32_t pix = argb[x];
129 last_line = argb;
130 argb += argb_stride;
146 assert(pic != NULL && pic->argb != NULL);
163 if (!AnalyzeEntropy(pic->argb, width, height, pic->argb_stride,
482 const uint32_t* const argb,
502 // Calculate backward references from ARGB image.
503 refs = VP8LGetBackwardReferences(width, height, argb, quality, 0, 1,
556 const uint32_t* const argb,
592 // Calculate backward references from ARGB image.
593 best_refs = VP8LGetBackwardReferences(width, height, argb, quality,
706 const uint32_t* const argb = enc->argb_;
712 const uint32_t c = argb[i];
720 const uint32_t c = argb[i];
847 // Allocates the memory for argb (W x H) buffer, 2 rows of context for
905 // Use 1 pixel cache for ARGB pixels.
937 uint32_t* src = pic->argb;
1086 picture->argb + y * picture->argb_stride,
1161 if (config == NULL || picture->argb == NULL) {