Home
last modified time | relevance | path

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

/external/webp/src/enc/
Dpredictor_enc.c58 static WEBP_INLINE void UpdateHisto(int histo_argb[4][256], uint32_t argb) { in UpdateHisto()
59 ++histo_argb[0][argb >> 24]; in UpdateHisto()
60 ++histo_argb[1][(argb >> 16) & 0xff]; in UpdateHisto()
61 ++histo_argb[2][(argb >> 8) & 0xff]; in UpdateHisto()
62 ++histo_argb[3][argb & 0xff]; in UpdateHisto()
338 int (*histo_argb)[256] = histo_stack_1; in GetBestPredictorForTile() local
348 memset(histo_argb, 0, sizeof(histo_stack_1)); in GetBestPredictorForTile()
382 UpdateHisto(histo_argb, residuals[relative_x]); in GetBestPredictorForTile()
386 (const int (*)[256])accumulated, (const int (*)[256])histo_argb); in GetBestPredictorForTile()
392 int (*tmp)[256] = histo_argb; in GetBestPredictorForTile()
[all …]