HomeSort by relevance Sort by last modified time
    Searched refs:token_costs (Results 1 - 10 of 10) sorted by null

  /external/libvpx/libvpx/vp8/encoder/
encodemb.c 222 rate0 += mb->token_costs[type][band][pt][tokens[next][0].token];
223 rate1 += mb->token_costs[type][band][pt][tokens[next][1].token];
274 rate0 += mb->token_costs[type][band][pt][tokens[next][0].token];
278 rate1 += mb->token_costs[type][band][pt][tokens[next][1].token];
314 tokens[next][0].rate += mb->token_costs[type][band][0][t0];
318 tokens[next][1].rate += mb->token_costs[type][band][0][t1];
334 rate0 += mb->token_costs[type][band][pt][t0];
335 rate1 += mb->token_costs[type][band][pt][t1];
block.h 100 int (*token_costs)[COEF_BANDS][PREV_COEF_CONTEXTS][MAX_ENTROPY_TOKENS]; member in struct:macroblock
onyx_int.h 687 int token_costs[BLOCK_TYPES][COEF_BANDS][PREV_COEF_CONTEXTS] member in struct:VP8_COMP::rd_costs_struct
ethreading.c 356 z->token_costs = x->token_costs;
rdopt.c 246 fill_token_costs(cpi->mb.token_costs,
250 cpi->mb.token_costs,
429 cost += mb->token_costs[type][vp8_coef_bands[c]][pt][t];
435 cost += mb->token_costs[type][vp8_coef_bands[c]][pt][DCT_EOB_TOKEN];
    [all...]
onyx_if.c     [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_block.h 133 // note that token_costs is the cost when eob node is skipped
134 vp9_coeff_cost token_costs[TX_SIZES]; member in struct:macroblock
vp9_encodemb.c 131 unsigned int(*token_costs)[2][COEFF_CONTEXTS][ENTROPY_TOKENS] =
132 mb->token_costs[tx_size][type][ref];
136 token_costs += band;
170 rate0 += (*token_costs)[0][pt][tokens[next][0].token];
171 rate1 += (*token_costs)[0][pt][tokens[next][1].token];
207 --token_costs;
227 rate0 += (*token_costs)[!x][pt][tokens[next][0].token];
231 rate1 += (*token_costs)[!x][pt][tokens[next][1].token];
284 tokens[next][0].rate += (*token_costs)[1][pt][t0];
288 tokens[next][1].rate += (*token_costs)[1][pt][t1]
    [all...]
vp9_rdopt.c 362 unsigned int(*token_costs)[2][COEFF_CONTEXTS][ENTROPY_TOKENS] =
363 x->token_costs[tx_size][type][is_inter_block(mi)];
379 cost = token_costs[0][0][pt][EOB_TOKEN];
389 cost += (*token_costs)[0][pt][prev_t];
392 ++token_costs;
401 cost += (*token_costs)[!prev_t][!prev_t][t];
405 ++token_costs;
410 if (band_left) cost += (*token_costs)[0][!prev_t][EOB_TOKEN];
421 cost += (*token_costs)[0][pt][tok];
424 ++token_costs;
    [all...]
vp9_rd.c 288 fill_token_costs(x->token_costs, cm->fc->coef_probs);

Completed in 244 milliseconds