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

  /external/libvpx/libvpx/vp8/encoder/
vp8_quantize.c 276 ((cpi->common.Y1dequant[QIndex][1] * \
281 ((cpi->common.UVdequant[QIndex][1] * \
286 ((cpi->common.Y2dequant[QIndex][1] * \
292 int QIndex;
300 QIndex = xd->segment_feature_data[MB_LVL_ALT_Q]
304 QIndex = cpi->common.base_qindex +
308 QIndex = (QIndex >= 0) ? ((QIndex <= MAXQ) ? QIndex : MAXQ) : 0
    [all...]
  /external/libvpx/libvpx/vp8/decoder/
decodeframe.c 59 int QIndex;
67 QIndex = xd->segment_feature_data[MB_LVL_ALT_Q][mbmi->segment_id];
71 QIndex = pc->base_qindex +
75 QIndex = (QIndex >= 0) ? ((QIndex <= MAXQ) ? QIndex : MAXQ)
78 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 258 milliseconds