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

  /external/libvpx/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/libvpx/vp8/encoder/
quantize.c 593 (( cpi->common.Y1dequant[QIndex][1] * \
599 (( cpi->common.UVdequant[QIndex][1] * \
605 (( cpi->common.Y2dequant[QIndex][1] * \
613 int QIndex;
622 QIndex = xd->segment_feature_data[MB_LVL_ALT_Q][xd->mode_info_context->mbmi.segment_id];
626 QIndex = cpi->common.base_qindex + xd->segment_feature_data[MB_LVL_ALT_Q][xd->mode_info_context->mbmi.segment_id];
628 QIndex = (QIndex >= 0) ? ((QIndex <= MAXQ) ? QIndex : MAXQ) : 0
    [all...]
rdopt.c 220 void vp8cx_initialize_me_consts(VP8_COMP *cpi, int QIndex)
222 cpi->mb.sadperbit16 = sad_per_bit16lut[QIndex];
223 cpi->mb.sadperbit4 = sad_per_bit4lut[QIndex];
    [all...]
encodeframe.c 44 extern void vp8cx_initialize_me_consts(VP8_COMP *cpi, int QIndex);
    [all...]
  /external/libvpx/libvpx/vp8/decoder/
decodframe.c 60 int QIndex;
69 QIndex = xd->segment_feature_data[MB_LVL_ALT_Q][mbmi->segment_id];
74 QIndex = pc->base_qindex + xd->segment_feature_data[MB_LVL_ALT_Q][mbmi->segment_id];
75 QIndex = (QIndex >= 0) ? ((QIndex <= MAXQ) ? QIndex : MAXQ) : 0; /* Clamp to valid range */
79 QIndex = pc->base_qindex;
83 xd->dequant_y1[0] = pc->Y1dequant[QIndex][0];
84 xd->dequant_y2[0] = pc->Y2dequant[QIndex][0]
    [all...]

Completed in 593 milliseconds