Searched refs:curL (Results 1 - 6 of 6) sorted by relevance
/frameworks/av/media/libstagefright/codecs/avc/enc/src/ |
H A D | intra_est.cpp | 32 bool IntraDecisionABE(AVCEncObject *encvid, int min_cost, uint8 *curL, int picPitch) argument 53 topL = curL - picPitch; 55 leftL = curL - 1; 111 void MBIntraSearch(AVCEncObject *encvid, int mbnum, uint8 *curL, int picPitch) argument 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 218 uint8 *curL = currPic->Sl + offset; /* point to reconstructed frame */ local 634 uint8 *curL, *comp, *org4, *org8; local 2008 uint8 *curL, *curCb, *curCr; local [all...] |
H A D | block.cpp | 260 void MBInterIdct(AVCCommonObj *video, uint8 *curL, AVCMacroblock *currMB, int picPitch) argument 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) argument 671 *curL = r0; 672 *(curL += pitch) = r1; 673 *(curL += pitch) = r2; 674 curL[pitc [all...] |
H A D | 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); 841 \param "curL" "pointer to Luma component of the current frame. 846 void MBPredTransQuantZZ(AVCEncObject *encvid, uint8 *curL, uint [all...] |
H A D | slice.cpp | 163 uint8 *cur, *curL, *curCb, *curCr; local 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) argument 516 dst = (uint32*)curL;
|
H A D | motion_comp.cpp | 49 uint8 *curL, *curCb, *curCr; local 62 curL = currPic->Sl + tmp_word + x_position; 67 predBlock = curL;
|
/frameworks/av/media/libstagefright/codecs/avc/common/src/ |
H A D | deblock.cpp | 122 uint8 *curL, *curCb, *curCr; local 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, 1 [all...] |
Completed in 67 milliseconds