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

  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
intra_est.cpp 32 bool IntraDecisionABE(AVCEncObject *encvid, int min_cost, uint8 *curL, int picPitch)
53 topL = curL - picPitch;
55 leftL = curL - 1;
111 void MBIntraSearch(AVCEncObject *encvid, int mbnum, uint8 *curL, int picPitch)
138 intra = IntraDecisionABE(encvid, min_cost, curL, picPitch);
157 curL -= 4;
161 *saved_inter++ = *((uint32*)(curL += 4));
162 *saved_inter++ = *((uint32*)(curL += 4));
163 *saved_inter++ = *((uint32*)(curL += 4));
164 *saved_inter++ = *((uint32*)(curL += 4))
    [all...]
block.cpp 260 void MBInterIdct(AVCCommonObj *video, uint8 *curL, AVCMacroblock *currMB, int picPitch)
263 uint8 *cur; // the same as curL
269 cur = curL;
346 curL += ((picPitch << 3) - 8);
351 curL += 8;
360 void dct_luma_16x16(AVCEncObject *encvid, uint8 *curL, uint8 *orgL)
671 *curL = r0;
672 *(curL += pitch) = r1;
673 *(curL += pitch) = r2;
674 curL[pitch] = r3
    [all...]
avcenc_lib.h 53 \param "curL" "Pointer to the origin of the macroblock on the current frame."
58 void MBInterIdct(AVCCommonObj *video, uint8 *curL, AVCMacroblock *currMB, int picPitch);
64 \param "curL" "Pointer to the reconstructed MB."
68 void dct_luma_16x16(AVCEncObject *encvid, uint8 *curL, uint8 *orgL);
296 \param "curL" "Pointer to the current MB origin in reconstructed frame."
301 //bool IntraDecisionABE(AVCEncObject *encvid, int min_cost, uint8 *curL, int picPitch);
308 \param "curL" "Pointer to the current MB origin in reconstructed frame."
312 void MBIntraSearch(AVCEncObject *encvid, int mbnum, uint8 *curL, int picPitch);
    [all...]
slice.cpp 163 uint8 *cur, *curL, *curCb, *curCr;
183 curL = currPic->Sl + offset;
203 MBIntraSearch(encvid, CurrMbAddr, curL, picPitch);
231 cur = curL;
300 MBInterIdct(video, curL, currMB, picPitch);
312 dct_luma_16x16(encvid, curL, orgL);
511 void Copy_MB(uint8 *curL, uint8 *curCb, uint8 *curCr, uint8 *predBlock, int picPitch)
516 dst = (uint32*)curL;
motion_comp.cpp 49 uint8 *curL, *curCb, *curCr;
62 curL = currPic->Sl + tmp_word + x_position;
67 predBlock = curL;
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/common/src/
deblock.cpp 122 uint8 *curL, *curCb, *curCr;
127 curL = currPic->Sl + offset + (x_pos << 4);
142 curL -= (pitch << 2); /* go back 4 lines */
144 memcpy(pred_block + 4, curL, 16);
145 curL += pitch;
146 memcpy(pred_block + 24, curL, 16);
147 curL += pitch;
148 memcpy(pred_block + 44, curL, 16);
149 curL += pitch;
150 memcpy(pred_block + 64, curL, 16)
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/dec/src/
pred_intra.cpp 32 uint8 *curL, *curCb, *curCr;
44 curL = currPic->Sl + offset;
51 video->pred_block = curL; /* point directly to the frame buffer */
63 comp = curL;// + (block_x<<2) + (block_y<<2)*currPic->pitch;
113 curL += (pitch << 3) - 8;
122 curL += 8;
137 video->pintra_pred_top = curL - pitch;
138 video->pintra_pred_left = curL - 1;
141 video->intra_pred_topleft = *(curL - pitch - 1);
202 itrans(dataBlock, curL, curL, pitch)
    [all...]
pred_inter.cpp 46 uint8 *curL, *curCb, *curCr;
60 curL = currPic->Sl + tmp_word + x_position;
70 predBlock = curL;
155 itrans(dataBlock, curL, curL, picWidth);
163 curL += 4;
170 curL += ((picWidth << 2) - 16);
    [all...]

Completed in 33 milliseconds