Searched refs:MAXQ (Results 1 – 11 of 11) sorted by relevance
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
D | vp9_quant_common.c | 125 return dc_qlookup[clamp(qindex + delta, 0, MAXQ)]; in vp9_dc_quant() 129 return ac_qlookup[clamp(qindex + delta, 0, MAXQ)]; in vp9_ac_quant() 139 return clamp(seg_qindex, 0, MAXQ); in vp9_get_qindex()
|
D | vp9_quant_common.h | 21 #define MAXQ 255 macro 22 #define QINDEX_RANGE (MAXQ - MINQ + 1)
|
D | vp9_seg_common.c | 21 MAXQ, MAX_LOOP_FILTER, 3, 0 };
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ |
D | onyxc_int.h | 34 #define MAXQ 127 macro 35 #define QINDEX_RANGE (MAXQ + 1)
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
D | vp9_aq_cyclicrefresh.c | 253 qindex2 = clamp(cm->base_qindex + cm->y_dc_delta_q + qindex_delta, 0, MAXQ); in vp9_cyclic_refresh_setup()
|
D | vp9_rdopt.c | 252 0, MAXQ); in set_block_thresholds()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
D | quantize.c | 628 QIndex = (QIndex >= 0) ? ((QIndex <= MAXQ) ? QIndex : MAXQ) : 0; in vp8cx_mb_init_quantizer()
|
D | firstpass.c | 1147 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()
|
D | ratectrl.c | 1289 if (Q >= MAXQ) in vp8_regulate_q()
|
D | onyx_if.c | 1593 if (cpi->oxcf.fixed_q > MAXQ) in vp8_change_config() 1594 cpi->oxcf.fixed_q = MAXQ; in vp8_change_config() 4183 if (Q < MAXQ) in encode_frame_to_data_rate() 4239 if (Q < MAXQ) in encode_frame_to_data_rate()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/ |
D | decodeframe.c | 75 … QIndex = (QIndex >= 0) ? ((QIndex <= MAXQ) ? QIndex : MAXQ) : 0; /* Clamp to valid range */ in vp8_mb_init_dequantizer()
|