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

  /frameworks/base/media/libstagefright/codecs/avc/common/src/
mb_access.cpp 22 OSCL_EXPORT_REF void InitNeighborAvailability(AVCCommonObj *video, int mbNum)
27 video->mbAddrA = mbNum - 1;
28 video->mbAddrB = mbNum - PicWidthInMbs;
29 video->mbAddrC = mbNum - PicWidthInMbs + 1;
30 video->mbAddrD = mbNum - PicWidthInMbs - 1;
deblock.cpp 299 int mbNum = mb_y * video->PicWidthInMbs + mb_x;
304 MbQ = &(video->mblock[mbNum]); // current Mb
313 filterLeftMbEdgeFlag = mb_is_available(video->mblock, video->PicSizeInMbs, mbNum - 1, mbNum);
314 filterTopMbEdgeFlag = mb_is_available(video->mblock, video->PicSizeInMbs, mbNum - video->PicWidthInMbs, mbNum);
386 /* Save Alpha, Beta and clipTable for future use, with the obselete variables filterLeftMbEdgeFlag, mbNum amd tmp */
388 mbNum = Beta;
485 /* Recover Alpha, Beta and clipTable for edge!=0 with the variables filterLeftMbEdgeFlag, mbNum and tmp */
488 Beta = mbNum;
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/dec/src/
slice.cpp 43 if ((CurrMbAddr && (CurrMbAddr != (uint)(video->mbNum + 1))) && video->currSeqParams->constrained_set1_flag == 1)
45 ConcealSlice(decvid, video->mbNum, CurrMbAddr);
61 video->mbNum = CurrMbAddr;
106 video->mbNum = 0; // _Conceal
730 video->mbNum = CurrMbAddr;
avcdec_api.cpp 287 video->mbNum = 0; // MC_Conceal
515 if (video->sliceHdr->frame_num != video->prevFrameNum || (video->sliceHdr->first_mb_in_slice < (uint)video->mbNum && video->currSeqParams->constrained_set1_flag == 1))
533 video->mbNum = 0; // MC_Conceal
575 video->mbNum = 0; // Conceal
938 video->mbNum = 0;
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/common/include/
avclib_common.h 360 \param "mbNum" "The current macroblock index."
364 OSCL_IMPORT_REF void InitNeighborAvailability(AVCCommonObj *video, int mbNum);
avcint_common.h 679 uint mbNum; /* number of current MB */
680 int mb_x; /* x-coordinate of the current mbNum */
681 int mb_y; /* y-coordinate of the current mbNum */
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
slice.cpp 35 video->mbNum = CurrMbAddr = sliceHdr->first_mb_in_slice;// * (1+video->MbaffFrameFlag);
43 video->mbNum = CurrMbAddr;
128 video->mbNum = CurrMbAddr;
165 int CurrMbAddr = video->mbNum;
init.cpp 781 video->mbNum = 0; /* start from zero MB */
810 sliceHdr->first_mb_in_slice = video->mbNum
    [all...]
motion_est.cpp 256 int mbnum, offset; local
346 mbnum = j * mbwidth + start_i;
350 video->mbNum = mbnum;
351 video->currMB = currMB = mblock + mbnum;
352 mot_mb_16x16 = mot16x16 + mbnum;
369 abe_cost = encvid->min_cost[mbnum] = mot_mb_16x16->sad;
385 intraSearch[mbnum] = 0;
390 rateCtrl->MADofMB[mbnum] = abe_cost;
398 totalSAD += (int) rateCtrl->MADofMB[mbnum];//mot_mb_16x16->sad
965 int mbnum = video->mbNum; local
1362 int mbnum = video->mbNum; local
    [all...]
rate_control.cpp 778 rateCtrl->MADofMB[video->mbNum] = AVCSAD_Macroblock_C(orgL,
783 rateCtrl->MADofMB[video->mbNum] = encvid->i4_sad / 256.;
    [all...]
intra_est.cpp 111 void MBIntraSearch(AVCEncObject *encvid, int mbnum, uint8 *curL, int picPitch)
128 min_cost = encvid->min_cost[mbnum];
131 /* need to add the check for encvid->intraSearch[video->mbNum] to skip intra
173 encvid->min_cost[mbnum] = min_cost; /* update min_cost */
    [all...]
header.cpp 332 if (video->mbNum == 0) /* first mb in frame */
    [all...]

Completed in 120 milliseconds