HomeSort by relevance Sort by last modified time
    Searched refs:QIndex (Results 1 - 5 of 5) sorted by null

  /external/libvpx/vp8/common/
quant_common.c 39 int vp8_dc_quant(int QIndex, int Delta)
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)
58 QIndex = QIndex + Delta
    [all...]
quant_common.h 16 extern int vp8_ac_yquant(int QIndex);
17 extern int vp8_dc_quant(int QIndex, int Delta);
18 extern int vp8_dc2quant(int QIndex, int Delta);
19 extern int vp8_ac2quant(int QIndex, int Delta);
20 extern int vp8_dc_uv_quant(int QIndex, int Delta);
21 extern int vp8_ac_uv_quant(int QIndex, int Delta);
  /external/libvpx/vp8/encoder/
encodeframe.c 42 extern void vp8cx_initialize_me_consts(VP8_COMP *cpi, int QIndex);
292 int QIndex;
302 QIndex = xd->segment_feature_data[MB_LVL_ALT_Q][xd->mode_info_context->mbmi.segment_id];
306 QIndex = cpi->common.base_qindex + xd->segment_feature_data[MB_LVL_ALT_Q][xd->mode_info_context->mbmi.segment_id];
307 QIndex = (QIndex >= 0) ? ((QIndex <= MAXQ) ? QIndex : MAXQ) : 0; // Clamp to valid range
311 QIndex = cpi->common.base_qindex;
314 zbin_extra = (cpi->common.Y1dequant[QIndex][1] * (cpi->zbin_over_quant + cpi->zbin_mode_boost)) >> 7
    [all...]
rdopt.c 217 void vp8cx_initialize_me_consts(VP8_COMP *cpi, int QIndex)
219 cpi->mb.sadperbit16 = sad_per_bit16lut[QIndex];
220 cpi->mb.sadperbit4 = sad_per_bit4lut[QIndex];
    [all...]
  /external/libvpx/vp8/decoder/
decodframe.c 68 int QIndex;
77 QIndex = xd->segment_feature_data[MB_LVL_ALT_Q][mbmi->segment_id];
82 QIndex = pc->base_qindex + xd->segment_feature_data[MB_LVL_ALT_Q][mbmi->segment_id];
83 QIndex = (QIndex >= 0) ? ((QIndex <= MAXQ) ? QIndex : MAXQ) : 0; /* Clamp to valid range */
87 QIndex = pc->base_qindex;
92 xd->block[i].dequant = pc->Y1dequant[QIndex];
97 xd->block[i].dequant = pc->UVdequant[QIndex];
    [all...]

Completed in 64 milliseconds