Home
last modified time | relevance | path

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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
Dvp9_quant_common.c125 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()
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 };
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
Donyxc_int.h34 #define MAXQ 127 macro
35 #define QINDEX_RANGE (MAXQ + 1)
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_aq_cyclicrefresh.c253 qindex2 = clamp(cm->base_qindex + cm->y_dc_delta_q + qindex_delta, 0, MAXQ); in vp9_cyclic_refresh_setup()
Dvp9_rdopt.c252 0, MAXQ); in set_block_thresholds()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/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.c1593 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/
Ddecodeframe.c75 … QIndex = (QIndex >= 0) ? ((QIndex <= MAXQ) ? QIndex : MAXQ) : 0; /* Clamp to valid range */ in vp8_mb_init_dequantizer()