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 67 int QIndex;
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/
encodeframe.c 42 extern void vp8cx_initialize_me_consts(VP8_COMP *cpi, int QIndex);
307 int QIndex;
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][1] * (cpi->zbin_over_quant + cpi->zbin_mode_boost)) >> 7
    [all...]

Completed in 419 milliseconds