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

  /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...]
  /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...]

Completed in 29 milliseconds