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

  /frameworks/base/media/libstagefright/codecs/avc/dec/src/
slice.cpp 126 currMB->QPy = video->QPy;
221 temp += (video->QPy + 52);
222 currMB->QPy = video->QPy = temp - 52 * (temp * 79 >> 12);
223 if (currMB->QPy > 51 || currMB->QPy < 0)
225 video->QPy = AVC_CLIP3(0, 51, video->QPy);
228 video->QPy_div_6 = (video->QPy * 43) >> 8
    [all...]
header.cpp 711 video->QPy = 26 + currPPS->pic_init_qp_minus26 + sliceHdr->slice_qp_delta;
712 if (video->QPy > 51 || video->QPy < 0)
714 video->QPy = AVC_CLIP3(0, 51, video->QPy);
717 video->QPc = mapQPi2QPc[AVC_CLIP3(0, 51, video->QPy + video->currPicParams->chroma_qp_index_offset)];
719 video->QPy_div_6 = (video->QPy * 43) >> 8;
720 video->QPy_mod_6 = video->QPy - 6 * video->QPy_div_6;
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
rate_control.cpp 347 video->QPy = rateCtrl->Qc = rateCtrl->initQP;
352 video->QPy = rateCtrl->Qc;
375 pMP->QP = video->QPy;
389 video->QPy = rateCtrl->initQP;
392 // printf(" %d ",video->QPy);
397 picParam->pic_init_qp_minus26 = video->QPy - 26;
401 encvid->lambda_mode = QP2QUANT[AVC_MAX(0, video->QPy-SHIFT_QP)];
702 video->QPy_div_6 = (currMB->QPy * 43) >> 8;
703 video->QPy_mod_6 = currMB->QPy - 6 * video->QPy_div_6;
704 currMB->QPc = video->QPc = mapQPi2QPc[AVC_CLIP3(0, 51, currMB->QPy + video->currPicParams->chroma_qp_index_offset)]
    [all...]
slice.cpp 51 /* calculate currMB->QPy */
328 set video->QPyprev = currMB->QPy; */
336 if (!currMB->CBP && currMB->NumMbPart == 1 && currMB->QPy == video->QPy)
581 /* calculate currMB->mb_qp_delta = currMB->QPy - video->QPyprev */
584 status = se_v(stream, currMB->QPy - video->QPy);
585 video->QPy = currMB->QPy; /* = (video->QPyprev + currMB->mb_qp_delta + 52)%52; */
590 if (currMB->QPy != video->QPy) // current QP is not the same as previous Q
    [all...]
init.cpp     [all...]
  /frameworks/base/media/libstagefright/codecs/avc/common/src/
deblock.cpp 332 QP = (MbP->QPy + MbQ->QPy + 1) >> 1; // Average QP of the two blocks;
376 indexA = MbQ->QPy + video->FilterOffsetA;
377 indexB = MbQ->QPy + video->FilterOffsetB;
439 QP = (MbP->QPy + MbQ->QPy + 1) >> 1; // Average QP of the two blocks;
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/common/include/
avcint_common.h 598 int QPy; /* Luma QP */
643 int QPy;
    [all...]

Completed in 39 milliseconds