HomeSort by relevance Sort by last modified time
    Searched full:score_t (Results 1 - 4 of 4) sorted by null

  /external/opencv3/3rdparty/libwebp/enc/
quant.c 464 score_t cost; // bit cost
465 score_t error; // distortion = sum of (|coeff_i| - level_i * Q_i)^2
482 static WEBP_INLINE score_t RDScoreTrellis(int lambda, score_t rate,
483 score_t distortion) {
497 score_t best_score;
503 score_t cost;
504 score_t max_error;
551 score_t cur_score = MAX_COST;
575 const score_t total_error = prev->error - delta_error
    [all...]
vp8enci.h 162 typedef int64_t score_t; // type used for scores, rate, distortion typedef
163 #define MAX_COST ((score_t)0x7fffffffffffffLL)
260 score_t D, SD, R, score; // Distortion, spectral distortion, rate, score.
  /external/webp/src/enc/
quant.c 548 score_t score; // partial RD score
565 static WEBP_INLINE score_t RDScoreTrellis(int lambda, score_t rate,
566 score_t distortion) {
584 score_t best_score;
588 score_t cost;
612 const score_t rate = (ctx0 == 0) ? VP8BitCost(1, last_proba) : 0;
643 score_t base_score, last_pos_score;
644 score_t best_cur_score = MAX_COST;
655 const score_t last_pos_cost
    [all...]
vp8enci.h 111 typedef int64_t score_t; // type used for scores, rate, distortion typedef
112 // Note that MAX_COST is not the maximum allowed by sizeof(score_t),
114 #define MAX_COST ((score_t)0x7fffffffffffffLL)
208 score_t D, SD; // Distortion, spectral distortion
209 score_t H, R, score; // header bits, rate, score.

Completed in 250 milliseconds