Searched refs:token_cache (Results 1 - 5 of 5) sorted by relevance

/external/libvpx/libvpx/vp9/common/
H A Dvp9_scan.h36 const uint8_t *token_cache, int c) {
37 return (1 + token_cache[neighbors[MAX_NEIGHBORS * c + 0]] +
38 token_cache[neighbors[MAX_NEIGHBORS * c + 1]]) >> 1;
35 get_coef_context(const int16_t *neighbors, const uint8_t *token_cache, int c) argument
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_detokenize.c63 uint8_t token_cache[32 * 32]; local
128 token_cache[scan[c]] = 0;
132 ctx = get_coef_context(nb, token_cache, c);
199 token_cache[scan[c]] = vp9_pt_energy_class[token];
201 ctx = get_coef_context(nb, token_cache, c);
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_tokenize.c498 uint8_t token_cache[32 * 32]; local
543 token_cache[scan[c]] = 0;
545 pt = get_coef_context(nb, token_cache, c);
555 token_cache[scan[c]] = vp9_pt_energy_class[token];
557 pt = get_coef_context(nb, token_cache, c);
H A Dvp9_encodemb.c81 uint8_t *token_cache) {
82 int bak = token_cache[scan[idx]], pt;
83 token_cache[scan[idx]] = vp9_pt_energy_class[token];
84 pt = get_coef_context(nb, token_cache, idx + 1);
85 token_cache[scan[idx]] = bak;
97 uint8_t token_cache[1024]; local
139 token_cache[scan[i]] =
158 pt = trellis_get_coeff_context(scan, nb, i, t0, token_cache);
213 pt = trellis_get_coeff_context(scan, nb, i, t0, token_cache);
218 pt = trellis_get_coeff_context(scan, nb, i, t1, token_cache);
78 trellis_get_coeff_context(const int16_t *scan, const int16_t *nb, int idx, int token, uint8_t *token_cache) argument
[all...]
H A Dvp9_rdopt.c350 uint8_t token_cache[32 * 32]; local
378 token_cache[0] = vp9_pt_energy_class[prev_t];
392 pt = get_coef_context(nb, token_cache, c);
395 token_cache[rc] = vp9_pt_energy_class[t];
409 pt = get_coef_context(nb, token_cache, c);

Completed in 194 milliseconds