Searched refs:QIndex (Results 1 - 6 of 6) sorted by relevance

/external/libvpx/libvpx/vp8/common/
H A Dquant_common.c37 int vp8_dc_quant(int QIndex, int Delta) { argument
40 QIndex = QIndex + Delta;
42 if (QIndex > 127) {
43 QIndex = 127;
44 } else if (QIndex < 0) {
45 QIndex = 0;
48 retval = dc_qlookup[QIndex];
52 int vp8_dc2quant(int QIndex, int Delta) { argument
55 QIndex
66 vp8_dc_uv_quant(int QIndex, int Delta) argument
84 vp8_ac_yquant(int QIndex) argument
97 vp8_ac2quant(int QIndex, int Delta) argument
117 vp8_ac_uv_quant(int QIndex, int Delta) argument
[all...]
H A Dquant_common.h22 extern int vp8_ac_yquant(int QIndex);
23 extern int vp8_dc_quant(int QIndex, int Delta);
24 extern int vp8_dc2quant(int QIndex, int Delta);
25 extern int vp8_ac2quant(int QIndex, int Delta);
26 extern int vp8_dc_uv_quant(int QIndex, int Delta);
27 extern int vp8_ac_uv_quant(int QIndex, int Delta);
/external/libvpx/libvpx/vp8/encoder/
H A Dvp8_quantize.c276 ((cpi->common.Y1dequant[QIndex][1] * \
281 ((cpi->common.UVdequant[QIndex][1] * \
286 ((cpi->common.Y2dequant[QIndex][1] * \
292 int QIndex; local
300 QIndex = xd->segment_feature_data[MB_LVL_ALT_Q]
304 QIndex = cpi->common.base_qindex +
308 QIndex = (QIndex >= 0) ? ((QIndex <= MAXQ) ? QIndex
411 int QIndex = x->q_index; local
[all...]
H A Drdopt.c156 void vp8cx_initialize_me_consts(VP8_COMP *cpi, int QIndex) { argument
157 cpi->mb.sadperbit16 = sad_per_bit16lut[QIndex];
158 cpi->mb.sadperbit4 = sad_per_bit4lut[QIndex];
H A Dencodeframe.c41 extern void vp8cx_initialize_me_consts(VP8_COMP *cpi, int QIndex);
/external/libvpx/libvpx/vp8/decoder/
H A Ddecodeframe.c59 int QIndex; local
67 QIndex = xd->segment_feature_data[MB_LVL_ALT_Q][mbmi->segment_id];
71 QIndex = pc->base_qindex +
75 QIndex = (QIndex >= 0) ? ((QIndex <= MAXQ) ? QIndex : MAXQ)
78 QIndex = pc->base_qindex;
83 xd->dequant_y1[0] = pc->Y1dequant[QIndex][0];
84 xd->dequant_y2[0] = pc->Y2dequant[QIndex][
[all...]

Completed in 138 milliseconds