Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp8/encoder/
Dencodemb.c222 rate0 += mb->token_costs[type][band][pt][tokens[next][0].token]; in optimize_b()
223 rate1 += mb->token_costs[type][band][pt][tokens[next][1].token]; in optimize_b()
274 rate0 += mb->token_costs[type][band][pt][tokens[next][0].token]; in optimize_b()
278 rate1 += mb->token_costs[type][band][pt][tokens[next][1].token]; in optimize_b()
314 tokens[next][0].rate += mb->token_costs[type][band][0][t0]; in optimize_b()
318 tokens[next][1].rate += mb->token_costs[type][band][0][t1]; in optimize_b()
334 rate0 += mb->token_costs[type][band][pt][t0]; in optimize_b()
335 rate1 += mb->token_costs[type][band][pt][t1]; in optimize_b()
Dblock.h100 int (*token_costs)[COEF_BANDS][PREV_COEF_CONTEXTS][MAX_ENTROPY_TOKENS]; member
Dethreading.c355 z->token_costs = x->token_costs; in setup_mbby_copy()
Donyx_int.h697 int token_costs[BLOCK_TYPES][COEF_BANDS][PREV_COEF_CONTEXTS] member
Drdopt.c248 fill_token_costs(cpi->mb.token_costs, in vp8_initialize_rd_consts()
431 cost += mb->token_costs[type][vp8_coef_bands[c]][pt][t]; in cost_coeffs()
437 cost += mb->token_costs[type][vp8_coef_bands[c]][pt][DCT_EOB_TOKEN]; in cost_coeffs()
Donyx_if.c2094 cpi->mb.token_costs = cpi->rd_costs.token_costs; in vp8_create_compressor()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_block.h142 vp9_coeff_cost token_costs[TX_SIZES]; member
Dvp9_encodemb.c102 unsigned int(*const token_costs)[2][COEFF_CONTEXTS][ENTROPY_TOKENS] = in vp9_optimize_b() local
103 mb->token_costs[tx_size][plane_type][ref]; in vp9_optimize_b()
126 token_costs_cur = token_costs + band_translate[0]; in vp9_optimize_b()
139 token_costs_cur = token_costs + band_cur; in vp9_optimize_b()
216 token_costs + band_next; in vp9_optimize_b()
Dvp9_rdopt.c372 unsigned int(*token_costs)[2][COEFF_CONTEXTS][ENTROPY_TOKENS] = in cost_coeffs() local
373 x->token_costs[tx_size][type][is_inter_block(mi)]; in cost_coeffs()
389 cost = token_costs[0][0][pt][EOB_TOKEN]; in cost_coeffs()
399 cost += (*token_costs)[0][pt][prev_t]; in cost_coeffs()
402 ++token_costs; in cost_coeffs()
411 cost += (*token_costs)[!prev_t][!prev_t][t]; in cost_coeffs()
415 ++token_costs; in cost_coeffs()
420 if (band_left) cost += (*token_costs)[0][!prev_t][EOB_TOKEN]; in cost_coeffs()
431 cost += (*token_costs)[0][pt][tok]; in cost_coeffs()
434 ++token_costs; in cost_coeffs()
[all …]
Dvp9_rd.c375 fill_token_costs(x->token_costs, cm->fc->coef_probs); in vp9_initialize_rd_consts()