Searched defs:QIndex (Results 1 - 4 of 4) sorted by relevance

/external/libvpx/vp8/common/
H A Dquant_common.c39 int vp8_dc_quant(int QIndex, int Delta) argument
43 QIndex = QIndex + Delta;
45 if (QIndex > 127)
46 QIndex = 127;
47 else if (QIndex < 0)
48 QIndex = 0;
50 retval = dc_qlookup[ QIndex ];
54 int vp8_dc2quant(int QIndex, int Delta) argument
58 QIndex
69 vp8_dc_uv_quant(int QIndex, int Delta) argument
88 vp8_ac_yquant(int QIndex) argument
101 vp8_ac2quant(int QIndex, int Delta) argument
119 vp8_ac_uv_quant(int QIndex, int Delta) argument
[all...]
/external/libvpx/vp8/decoder/
H A Ddecodframe.c67 int QIndex; local
76 QIndex = xd->segment_feature_data[MB_LVL_ALT_Q][mbmi->segment_id];
81 QIndex = pc->base_qindex + xd->segment_feature_data[MB_LVL_ALT_Q][mbmi->segment_id];
82 QIndex = (QIndex >= 0) ? ((QIndex <= MAXQ) ? QIndex : MAXQ) : 0; /* Clamp to valid range */
86 QIndex = pc->base_qindex;
91 xd->block[i].dequant = pc->Y1dequant[QIndex];
96 xd->block[i].dequant = pc->UVdequant[QIndex];
[all...]
/external/libvpx/vp8/encoder/
H A Dencodeframe.c42 extern void vp8cx_initialize_me_consts(VP8_COMP *cpi, int QIndex);
307 int QIndex; local
317 QIndex = xd->segment_feature_data[MB_LVL_ALT_Q][xd->mode_info_context->mbmi.segment_id];
321 QIndex = cpi->common.base_qindex + xd->segment_feature_data[MB_LVL_ALT_Q][xd->mode_info_context->mbmi.segment_id];
322 QIndex = (QIndex >= 0) ? ((QIndex <= MAXQ) ? QIndex : MAXQ) : 0; // Clamp to valid range
326 QIndex = cpi->common.base_qindex;
329 zbin_extra = (cpi->common.Y1dequant[QIndex][
375 int QIndex = x->q_index; local
[all...]
H A Drdopt.c204 void vp8cx_initialize_me_consts(VP8_COMP *cpi, int QIndex) argument
206 cpi->mb.sadperbit16 = sad_per_bit16lut[QIndex];
207 cpi->mb.sadperbit4 = sad_per_bit4lut[QIndex];

Completed in 619 milliseconds