Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp8/encoder/
Dencodemb.c259 mb->token_costs[type][band][pt][tokens[next][0].token]; in optimize_b()
261 mb->token_costs[type][band][pt][tokens[next][1].token]; in optimize_b()
318 rate0 += mb->token_costs[type][band][pt][ in optimize_b()
324 rate1 += mb->token_costs[type][band][pt][ in optimize_b()
365 tokens[next][0].rate += mb->token_costs[type][band][0][t0]; in optimize_b()
370 tokens[next][1].rate += mb->token_costs[type][band][0][t1]; in optimize_b()
386 rate0 += mb->token_costs[type][band][pt][t0]; in optimize_b()
387 rate1 += mb->token_costs[type][band][pt][t1]; in optimize_b()
Dblock.h106 int (*token_costs)[COEF_BANDS][PREV_COEF_CONTEXTS] member
Dethreading.c365 z->token_costs = x->token_costs; in setup_mbby_copy()
Donyx_int.h714 int token_costs[BLOCK_TYPES][COEF_BANDS] member
Drdopt.c327 cpi->mb.token_costs, in vp8_initialize_rd_consts()
537 cost += mb->token_costs [type] [vp8_coef_bands[c]] [pt] [t]; in cost_coeffs()
543 cost += mb->token_costs [type] [vp8_coef_bands[c]] [pt] [DCT_EOB_TOKEN]; in cost_coeffs()
Donyx_if.c2187 cpi->mb.token_costs = cpi->rd_costs.token_costs; in vp8_create_compressor()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encodemb.c159 rate0 += mb->token_costs[tx_size][type][ref][band][0][pt] in optimize_b()
161 rate1 += mb->token_costs[tx_size][type][ref][band][0][pt] in optimize_b()
214 rate0 += mb->token_costs[tx_size][type][ref][band][!x][pt] in optimize_b()
219 rate1 += mb->token_costs[tx_size][type][ref][band][!x][pt] in optimize_b()
259 mb->token_costs[tx_size][type][ref][band][1][0][t0]; in optimize_b()
264 mb->token_costs[tx_size][type][ref][band][1][0][t1]; in optimize_b()
280 rate0 += mb->token_costs[tx_size][type][ref][band][0][ctx][t0]; in optimize_b()
281 rate1 += mb->token_costs[tx_size][type][ref][band][0][ctx][t1]; in optimize_b()
Dvp9_block.h112 vp9_coeff_cost token_costs[TX_SIZES]; member
Dvp9_rdopt.c370 unsigned int (*token_costs)[2][COEFF_CONTEXTS][ENTROPY_TOKENS] = in cost_coeffs() local
371 x->token_costs[tx_size][type][is_inter_block(mbmi)]; in cost_coeffs()
387 cost = token_costs[0][0][pt][EOB_TOKEN]; in cost_coeffs()
397 cost = (*token_costs)[0][pt][prev_t] + in cost_coeffs()
401 ++token_costs; in cost_coeffs()
411 cost += (*token_costs)[!prev_t][!prev_t][t] + in cost_coeffs()
415 cost += (*token_costs)[!prev_t][pt][t] + in cost_coeffs()
422 ++token_costs; in cost_coeffs()
429 cost += (*token_costs)[0][!prev_t][EOB_TOKEN]; in cost_coeffs()
432 cost += (*token_costs)[0][pt][EOB_TOKEN]; in cost_coeffs()
Dvp9_rd.c290 fill_token_costs(x->token_costs, cm->fc->coef_probs); in vp9_initialize_rd_consts()