Home
last modified time | relevance | path

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

/external/webp/src/enc/
Dquant.c462 score_t cost; // bit cost
463 score_t error; // distortion = sum of (|coeff_i| - level_i * Q_i)^2
480 static WEBP_INLINE score_t RDScoreTrellis(int lambda, score_t rate, in RDScoreTrellis()
481 score_t distortion) { in RDScoreTrellis()
495 score_t best_score; in TrellisQuantizeBlock()
501 score_t cost; in TrellisQuantizeBlock()
502 score_t max_error; in TrellisQuantizeBlock()
549 score_t cur_score = MAX_COST; in TrellisQuantizeBlock()
573 const score_t total_error = prev->error - delta_error; in TrellisQuantizeBlock()
574 score_t cost, base_cost, score; in TrellisQuantizeBlock()
[all …]
Dvp8enci.h159 typedef int64_t score_t; // type used for scores, rate, distortion typedef
160 #define MAX_COST ((score_t)0x7fffffffffffffLL)
257 score_t D, SD, R, score; // Distortion, spectral distortion, rate, score.