Home
last modified time | relevance | path

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

/external/webp/src/enc/
Dbackward_references.c909 int cache_bits_low = 0; in CalculateBestCacheSize() local
920 if (!BackwardReferencesLz77(xsize, ysize, argb, cache_bits_low, quality, 0, in CalculateBestCacheSize()
927 entropy_low = ComputeCacheEntropy(argb, refs, cache_bits_low); in CalculateBestCacheSize()
928 entropy_low += entropy_low * cache_bits_low * cost_mul; in CalculateBestCacheSize()
937 const int prev_cache_bits_low = cache_bits_low; in CalculateBestCacheSize()
939 cache_bits_low = (cache_bits_low + cache_bits_high) / 2; in CalculateBestCacheSize()
940 if (cache_bits_low != prev_cache_bits_low) eval_low = 1; in CalculateBestCacheSize()
942 *best_cache_bits = cache_bits_low; in CalculateBestCacheSize()
943 cache_bits_high = (cache_bits_low + cache_bits_high) / 2; in CalculateBestCacheSize()
944 if (cache_bits_high != cache_bits_low) eval_high = 1; in CalculateBestCacheSize()