/external/libvpx/libvpx/vpx_dsp/ |
vpx_dsp_common.h | 23 #define VPXMAX(x, y) (((x) > (y)) ? (x) : (y))
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_ratectrl.c | 211 return VPXMAX(FRAME_OVERHEAD_BITS, 219 VPXMAX(rc->min_frame_bandwidth, rc->avg_frame_bandwidth >> 5); 290 rc->bits_off_target = VPXMAX(rc->bits_off_target, -rc->maximum_buffer_size); 310 return VPXMAX(default_interval, 321 return VPXMAX(interval, min_gf_interval); 594 VPXMAX(cpi->rc.q_1_frame, cpi->rc.q_2_frame)); 755 active_best_quality = VPXMAX(qindex + delta_qindex, rc->best_quality); [all...] |
vp9_extend.c | 114 VPXMAX(src->y_width + 16, ALIGN_POWER_OF_TWO(src->y_width, 6)) - 117 VPXMAX(src->y_height + 16, ALIGN_POWER_OF_TWO(src->y_height, 6)) -
|
vp9_aq_complexity.c | 135 low_var_thresh = (cpi->oxcf.pass == 2) ? VPXMAX(cpi->twopass.mb_av_energy,
|
vp9_firstpass.c | 587 max_diff = VPXMAX(max_diff, diff); 630 max_diff = VPXMAX(max_diff, diff); 726 VPXMAX(0, fp_acc_data->intra_skip_count - 813 ? VPXMAX(this_tile->fp_data.image_data_start_row, [all...] |
vp9_mcomp.c | 43 col_min = VPXMAX(col_min, (MV_LOW >> 3) + 1); 44 row_min = VPXMAX(row_min, (MV_LOW >> 3) + 1); 59 subpel_mv_limits->col_min = VPXMAX(umv_window_limits->col_min * 8, 63 subpel_mv_limits->row_min = VPXMAX(umv_window_limits->row_min * 8, 68 subpel_mv_limits->col_min = VPXMAX(MV_LOW + 1, subpel_mv_limits->col_min); 70 subpel_mv_limits->row_min = VPXMAX(MV_LOW + 1, subpel_mv_limits->row_min); 77 size = VPXMAX(16, size); [all...] |
vp9_encodemv.c | 227 const unsigned int maxv = VPXMAX(abs(mv->row), abs(mv->col)) >> 3; 228 *max_mv_magnitude = VPXMAX(maxv, *max_mv_magnitude);
|
vp9_picklpf.c | 97 const int filt_low = VPXMAX(filt_mid - filter_step, min_filter_level);
|
vp9_rd.c | 198 return VPXMAX((int)(pow(q, RD_THRESH_POW) * 5.12), 8); 515 max_mv = VPXMAX(max_mv, VPXMAX(abs(this_mv->row), abs(this_mv->col)) >> 3); 658 const BLOCK_SIZE min_size = VPXMAX(bsize - 1, BLOCK_4X4);
|
vp9_aq_cyclicrefresh.c | 360 VPXMAX(vp9_get_qindex(&cm->seg, CR_SEGMENT_ID_BOOST1, cm->base_qindex), 463 cr->rate_ratio_qdelta = VPXMAX(cr->rate_ratio_qdelta, 2.5);
|
vp9_denoiser.c | 124 avg[c] = VPXMAX(0, sig[c] - adj); 162 avg[c] = VPXMAX(0, avg[c] - adj);
|
vp9_multi_thread.c | 62 jobs_per_tile_col = VPXMAX(cm->mb_rows, sb_rows);
|
vp9_ethread.c | 249 ? VPXMAX(tile_data->fp_data.image_data_start_row, 431 int num_workers = VPXMAX(cpi->oxcf.max_threads, 1); 587 int num_workers = VPXMAX(cpi->oxcf.max_threads, 1);
|
vp9_rdopt.c | 729 dist = VPXMAX(0, sse - dc_correct); [all...] |
vp9_encodeframe.c | [all...] |
vp9_encoder.c | [all...] |
vp9_temporal_filter.c | 635 base_strength = VPXMIN(6, VPXMAX(0, base_strength));
|
vp9_bitstream.c | [all...] |
/external/libvpx/libvpx/vp8/encoder/ |
mr_dissim.c | 175 mmvx = VPXMAX(abs(min_mvx - here->mbmi.mv.as_mv.row), 177 mmvy = VPXMAX(abs(min_mvy - here->mbmi.mv.as_mv.col), 179 dissim = VPXMAX(mmvx, mmvy);
|
pickinter.c | 122 return VPXMAX(VPXMAX(abs(y1 - y2), abs(y1 - y3)), abs(y1 - y4)); [all...] |
ratectrl.c | 330 kf_boost = VPXMAX(initial_boost, (int)(2 * cpi->output_framerate - 16)); [all...] |
mcomp.c | 242 int minc = VPXMAX(x->mv_col_min * 4, 246 int minr = VPXMAX(x->mv_row_min * 4, [all...] |
/external/libvpx/libvpx/vp8/decoder/ |
error_concealment.c | 84 const int int_top = VPXMAX(b1_row, b2_row); // top 85 const int int_left = VPXMAX(b1_col, b2_col); // left 115 const int blk_idx = VPXMAX(rel_ol_blk_row, 0) * 4 + VPXMAX(rel_ol_blk_col, 0);
|
/external/libvpx/libvpx/vp9/common/ |
vp9_thread_common.c | 224 mi_rows_to_filter = VPXMAX(cm->mi_rows / 8, 8);
|
vp9_loopfilter.c | [all...] |