Home | History | Annotate | Download | only in enc

Lines Matching full:argb

134   const uint32_t* argb = pic->argb;
137 uint32_t last_pix = ~argb[0]; // so we're sure that last_pix != argb[0]
141 if (argb[x] == last_pix) {
144 last_pix = argb[x];
166 argb += pic->argb_stride;
226 static int AnalyzeEntropy(const uint32_t* argb,
236 const uint32_t* prev_row = argb;
237 const uint32_t* curr_row = argb + argb_stride;
375 assert(pic != NULL && pic->argb != NULL);
398 if (!AnalyzeEntropy(pic->argb, width, height, pic->argb_stride,
742 const uint32_t* const argb,
763 // Calculate backward references from ARGB image.
764 refs = VP8LGetBackwardReferences(width, height, argb, quality, 0, &cache_bits,
823 const uint32_t* const argb,
862 // Calculate backward references from ARGB image.
863 best_refs = VP8LGetBackwardReferences(width, height, argb, quality,
1117 // Allocates the memory for argb (W x H) buffer, 2 rows of context for
1172 picture->argb + y * picture->argb_stride,
1205 // Remap argb values in src[] to packed palettes entries in dst[]
1243 // Use 1 pixel cache for ARGB pixels.
1266 const uint32_t* src = in_place ? enc->argb_ : pic->argb;
1410 if (!VP8ApplyNearLossless(width, height, picture->argb,
1514 if (config == NULL || picture->argb == NULL) {