/external/libvpx/libvpx/vp9/common/ |
vp9_quant_common.h | 17 #define MAXQ 255 18 #define QINDEX_RANGE (MAXQ - MINQ + 1)
|
vp9_quant_common.c | 125 return dc_qlookup[clamp(qindex + delta, 0, MAXQ)]; 129 return ac_qlookup[clamp(qindex + delta, 0, MAXQ)]; 138 clamp(base_qindex + data, 0, MAXQ); // Delta value
|
vp9_seg_common.c | 21 MAXQ, MAX_LOOP_FILTER, 3, 0 };
|
/external/libvpx/libvpx/vp8/common/ |
onyxc_int.h | 30 #define MAXQ 127 31 #define QINDEX_RANGE (MAXQ + 1)
|
/external/libvpx/libvpx/vp8/encoder/ |
quantize.c | 628 QIndex = (QIndex >= 0) ? ((QIndex <= MAXQ) ? QIndex : MAXQ) : 0;
|
firstpass.c | [all...] |
ratectrl.c | [all...] |
onyx_if.c | [all...] |
/external/libvpx/libvpx/vp8/decoder/ |
decodframe.c | 75 QIndex = (QIndex >= 0) ? ((QIndex <= MAXQ) ? QIndex : MAXQ) : 0; /* Clamp to valid range */ [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_firstpass.c | [all...] |
vp9_rdopt.c | 198 segment_qindex = clamp(segment_qindex + cm->y_dc_delta_q, 0, MAXQ); 239 qindex = clamp(cm->base_qindex + cm->y_dc_delta_q, 0, MAXQ); [all...] |
vp9_onyx_if.c | 153 // fit to the original data (after plotting real maxq vs minq (not q index)) 154 static int calculate_minq_index(double maxq, 157 const double minqtarget = MIN(((x3 * maxq + x2) * maxq + x1) * maxq + c, 158 maxq); 177 const double maxq = vp9_convert_qindex_to_q(i); local 180 kf_low_motion_minq[i] = calculate_minq_index(maxq, 185 kf_high_motion_minq[i] = calculate_minq_index(maxq, 191 gf_low_motion_minq[i] = calculate_minq_index(maxq, [all...] |