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

/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dresidual.cpp28 int orgPitch = currInput->pitch; local
29 int offset1 = y_position * orgPitch + x_position;
H A Drate_control.cpp763 void RCCalculateMAD(AVCEncObject *encvid, AVCMacroblock *currMB, uint8 *orgL, int orgPitch) argument
775 dmin_lx = (0xFFFF << 16) | orgPitch;
H A Dslice.cpp167 int orgPitch = currInput->pitch; local
191 if (orgPitch != picPitch)
193 offset = y_position * (orgPitch - picPitch);
219 //RCCalculateMAD(encvid,currMB,orgL,orgPitch); // no need to re-calculate MAD for Intra
253 org4 += ((orgPitch << 2) - 4);
288 org4 += (8 - (orgPitch << 3));
H A Dintra_est.cpp36 int orgPitch = currInput->pitch; local
39 uint8 *orgY = currInput->YCbCr[0] + y_pos * orgPitch + x_pos;
56 orgY_2 = orgY - orgPitch;
62 temp = *(leftL += picPitch) - *(orgY_2 += orgPitch);
69 orgY_2 = currInput->YCbCr[1] + offset + (y_pos >> 2) * (orgPitch - picPitch);
73 orgY_3 = orgY_2 - (orgPitch >> 1);
78 temp = *(leftL += (picPitch >> 1)) - *(orgY_3 += (orgPitch >> 1));
83 orgY_2 = currInput->YCbCr[2] + offset + (y_pos >> 2) * (orgPitch - picPitch);
87 orgY_3 = orgY_2 - (orgPitch >> 1);
92 temp = *(leftL += (picPitch >> 1)) - *(orgY_3 += (orgPitch >>
122 int orgPitch = currInput->pitch; local
[all...]

Completed in 185 milliseconds