Searched defs:this_rate (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Drdopt.c883 int this_rate; local
906 this_rate = rate_to + x->intra_uv_mode_cost[xd->frame_type][xd->mode_info_context->mbmi.uv_mode];
910 this_rd = RDCOST(x->rdmult, x->rddiv, this_rate, this_distortion);
916 r = this_rate;
/external/libvpx/libvpx/vp8/encoder/
H A Drdopt.c884 int this_rate; local
907 this_rate = rate_to + x->intra_uv_mode_cost[xd->frame_type][xd->mode_info_context->mbmi.uv_mode];
911 this_rd = RDCOST(x->rdmult, x->rddiv, this_rate, this_distortion);
917 r = this_rate;
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_encodeframe.c2039 int this_rate, sum_rate = 0, best_rate = INT_MAX; local
2160 rd_pick_sb_modes(cpi, tile, mi_row, mi_col, &this_rate, &this_dist, bsize,
2162 if (this_rate != INT_MAX) {
2165 this_rate += cpi->partition_cost[pl][PARTITION_NONE];
2167 sum_rd = RDCOST(x->rdmult, x->rddiv, this_rate, this_dist);
2173 best_rate = this_rate;
2279 subsize, &this_rate, &this_dist,
2282 if (this_rate == INT_MAX) {
2285 sum_rate += this_rate;
2336 rd_pick_sb_modes(cpi, tile, mi_row + mi_step, mi_col, &this_rate,
2722 int this_rate, sum_rate = 0, best_rate = INT_MAX; local
[all...]
H A Dvp9_rdopt.c71 int this_rate; member in struct:rdcost_block_args
440 args->this_rate += args->rate;
481 *rate = args.this_rate;
840 int this_rate, this_rate_tokenonly, s; local
870 this_rate = this_rate_tokenonly + bmode_costs[mode];
871 this_rd = RDCOST(x->rdmult, x->rddiv, this_rate, this_distortion);
877 *rate = this_rate;
955 int this_rate_tokenonly, this_rate, s; local
968 this_rate = this_rate_tokenonly +
970 this_rd = RDCOST(x->rdmult, x->rddiv, this_rate, this_distortio
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_encodeframe.c2177 int this_rate, sum_rate = 0, best_rate = INT_MAX; local
2249 rd_pick_sb_modes(cpi, tile, mi_row, mi_col, &this_rate, &this_dist, bsize,
2251 if (this_rate != INT_MAX) {
2254 this_rate += x->partition_cost[pl][PARTITION_NONE];
2256 sum_rd = RDCOST(x->rdmult, x->rddiv, this_rate, this_dist);
2261 best_rate = this_rate;
2312 &this_rate, &this_dist, i != 3, best_rd - sum_rd);
2314 if (this_rate == INT_MAX) {
2317 sum_rate += this_rate;
2367 rd_pick_sb_modes(cpi, tile, mi_row + mi_step, mi_col, &this_rate,
2811 int this_rate, sum_rate = 0, best_rate = INT_MAX; local
[all...]
H A Dvp9_rdopt.c74 int this_rate; member in struct:rdcost_block_args
688 args->this_rate += args->rate;
767 *rate = args.this_rate;
1246 int this_rate, this_rate_tokenonly, s; local
1279 this_rate = this_rate_tokenonly + bmode_costs[mode];
1280 this_rd = RDCOST(x->rdmult, x->rddiv, this_rate, this_distortion);
1286 *rate = this_rate;
1364 int this_rate_tokenonly, this_rate, s; local
1377 this_rate = this_rate_tokenonly +
1379 this_rd = RDCOST(x->rdmult, x->rddiv, this_rate, this_distortio
[all...]

Completed in 1121 milliseconds