Searched defs:picPitch (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dblock.cpp260 void MBInterIdct(AVCCommonObj *video, uint8 *curL, AVCMacroblock *currMB, int picPitch) argument
314 r1 = *(cur += picPitch) + (r1 >> 6);
317 r2 = *(cur += picPitch) + (r2 >> 6);
320 r3 = cur[picPitch] + (r3 >> 6);
322 cur[picPitch] = r3;
324 cur -= (picPitch << 1);
333 cur += ((picPitch << 2) - 4);
346 curL += ((picPitch << 3) - 8);
H A Dslice.cpp166 int picPitch = currPic->pitch; local
182 offset = y_position * picPitch + x_position;
191 if (orgPitch != picPitch)
193 offset = y_position * (orgPitch - picPitch);
203 MBIntraSearch(encvid, CurrMbAddr, curL, picPitch);
228 video->pred_pitch = picPitch;
252 cur += ((picPitch << 2) - 4);
287 cur += (8 - (picPitch << 3));
300 MBInterIdct(video, curL, currMB, picPitch);
511 void Copy_MB(uint8 *curL, uint8 *curCb, uint8 *curCr, uint8 *predBlock, int picPitch) argument
[all...]
H A Dmotion_comp.cpp57 int picPitch = currPic->pitch; local
61 tmp_word = y_position * picPitch;
98 offsetP = (block_y << 2) * picPitch + (block_x << 2);
99 eLumaMotionComp(ref_l, picPitch, picHeight, x_pos, y_pos,
101 predBlock + offsetP, picPitch, MbWidth, MbHeight);
106 predCb + offsetP, picPitch >> 1, MbWidth >> 1, MbHeight >> 1);
109 predCr + offsetP, picPitch >> 1, MbWidth >> 1, MbHeight >> 1);
H A Dintra_est.cpp32 bool IntraDecisionABE(AVCEncObject *encvid, int min_cost, uint8 *curL, int picPitch) argument
53 topL = curL - picPitch;
62 temp = *(leftL += picPitch) - *(orgY_2 += orgPitch);
67 offset = (y_pos >> 2) * picPitch + (x_pos >> 1);
69 orgY_2 = currInput->YCbCr[1] + offset + (y_pos >> 2) * (orgPitch - picPitch);
72 topL -= (picPitch >> 1);
78 temp = *(leftL += (picPitch >> 1)) - *(orgY_3 += (orgPitch >> 1));
83 orgY_2 = currInput->YCbCr[2] + offset + (y_pos >> 2) * (orgPitch - picPitch);
86 topL -= (picPitch >> 1);
92 temp = *(leftL += (picPitch >>
111 MBIntraSearch(AVCEncObject *encvid, int mbnum, uint8 *curL, int picPitch) argument
[all...]

Completed in 56 milliseconds