Home
last modified time | relevance | path

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

/external/webp/src/enc/
Dquant.c562 int best_path[3] = {-1, -1, -1}; // store best-last/best-level/best-previous in TrellisQuantizeBlock() local
673 best_path[0] = n; // best eob position in TrellisQuantizeBlock()
674 best_path[1] = m; // best node index in TrellisQuantizeBlock()
675 best_path[2] = best_prev; // best predecessor in TrellisQuantizeBlock()
684 if (best_path[0] == -1) { in TrellisQuantizeBlock()
693 int best_node = best_path[1]; in TrellisQuantizeBlock()
694 n = best_path[0]; in TrellisQuantizeBlock()
695 NODE(n, best_node).prev = best_path[2]; // force best-prev for terminal in TrellisQuantizeBlock()