Searched defs:best_mode_index (Results 1 - 5 of 5) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_context_tree.h49 int best_mode_index; member in struct:__anon11908
H A Dvp9_rd.c653 int bsize, int best_mode_index) {
663 if (mode == best_mode_index) {
652 vp9_update_rd_thresh_fact(int (*factor_buf)[MAX_MODES], int rd_thresh, int bsize, int best_mode_index) argument
H A Dvp9_rdopt.c2273 ctx->best_mode_index = mode_index;
3030 int midx, best_mode_index = -1; local
3207 if (midx == mode_skip_start && best_mode_index >= 0) {
3298 best_mode_index >= 0 && best_mbmode.ref_frame[0] == INTRA_FRAME)
3324 if (best_mode_index >= 0 && best_mbmode.ref_frame[0] > INTRA_FRAME)
3463 best_mode_index = mode_index;
3592 if (best_mode_index < 0 || best_rd >= best_rd_so_far) {
3622 sf->adaptive_rd_thresh, bsize, best_mode_index);
3669 assert(best_mode_index >= 0);
3671 store_coding_context(x, ctx, best_mode_index, best_pred_dif
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Dpickinter.c654 int best_mode_index = 0; local
1220 best_mode_index = mode_index;
1258 if ((cpi->rd_baseline_thresh[best_mode_index] > 0) &&
1259 (cpi->rd_baseline_thresh[best_mode_index] < (INT_MAX >> 2))) {
1260 int best_adjustment = (x->rd_thresh_mult[best_mode_index] >> 3);
1262 x->rd_thresh_mult[best_mode_index] =
1263 (x->rd_thresh_mult[best_mode_index] >=
1265 ? x->rd_thresh_mult[best_mode_index] - best_adjustment
1267 x->rd_threshes[best_mode_index] =
1268 (cpi->rd_baseline_thresh[best_mode_index] >>
[all...]
H A Drdopt.c1756 int best_mode_index = 0; local
2219 best_mode_index = mode_index;
2255 if ((cpi->rd_baseline_thresh[best_mode_index] > 0) &&
2256 (cpi->rd_baseline_thresh[best_mode_index] < (INT_MAX >> 2))) {
2257 int best_adjustment = (x->rd_thresh_mult[best_mode_index] >> 2);
2259 x->rd_thresh_mult[best_mode_index] =
2260 (x->rd_thresh_mult[best_mode_index] >=
2262 ? x->rd_thresh_mult[best_mode_index] - best_adjustment
2264 x->rd_threshes[best_mode_index] =
2265 (cpi->rd_baseline_thresh[best_mode_index] >>
[all...]

Completed in 216 milliseconds