Home
last modified time | relevance | path

Searched refs:MAXQ (Results 1 – 11 of 11) sorted by relevance

/external/libvpx/libvpx/vp9/common/
Dvp9_quant_common.c86 return dc_qlookup[clamp(qindex + delta, 0, MAXQ)]; in vp9_dc_quant()
90 return ac_qlookup[clamp(qindex + delta, 0, MAXQ)]; in vp9_ac_quant()
100 return clamp(seg_qindex, 0, MAXQ); in vp9_get_qindex()
Dvp9_quant_common.h21 #define MAXQ 255 macro
22 #define QINDEX_RANGE (MAXQ - MINQ + 1)
Dvp9_seg_common.c21 MAXQ, MAX_LOOP_FILTER, 3, 0 };
/external/libvpx/libvpx/vp8/common/
Donyxc_int.h34 #define MAXQ 127 macro
35 #define QINDEX_RANGE (MAXQ + 1)
/external/libvpx/libvpx/vp9/encoder/
Dvp9_aq_cyclicrefresh.c252 qindex2 = clamp(cm->base_qindex + cm->y_dc_delta_q + qindex_delta, 0, MAXQ); in vp9_cyclic_refresh_setup()
Dvp9_rd.c153 0, MAXQ); in set_block_thresholds()
/external/libvpx/libvpx/vp8/encoder/
Dquantize.c628 QIndex = (QIndex >= 0) ? ((QIndex <= MAXQ) ? QIndex : MAXQ) : 0; in vp8cx_mb_init_quantizer()
Dfirstpass.c1147 for (Q = 0; Q < MAXQ; Q++) in estimate_cq()
1208 for (Q = 0; Q < MAXQ; Q++) in estimate_q()
1251 return MAXQ * 2; in estimate_kf_group_q()
1292 for (Q = 0; Q < MAXQ; Q++) in estimate_kf_group_q()
1310 while ((bits_per_mb_at_this_q > target_norm_bits_per_mb) && (Q < (MAXQ * 2))) in estimate_kf_group_q()
Dratectrl.c1289 if (Q >= MAXQ) in vp8_regulate_q()
Donyx_if.c1622 if (cpi->oxcf.fixed_q > MAXQ) in vp8_change_config()
1623 cpi->oxcf.fixed_q = MAXQ; in vp8_change_config()
4228 if (Q < MAXQ) in encode_frame_to_data_rate()
4284 if (Q < MAXQ) in encode_frame_to_data_rate()
/external/libvpx/libvpx/vp8/decoder/
Ddecodeframe.c76 … QIndex = (QIndex >= 0) ? ((QIndex <= MAXQ) ? QIndex : MAXQ) : 0; /* Clamp to valid range */ in vp8_mb_init_dequantizer()