Searched defs:picheight (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/media/libstagefright/codecs/avc/dec/src/
H A Dpred_inter.cpp239 void LumaMotionComp(uint8 *ref, int picwidth, int picheight, argument
257 if (x_pos >= 0 && x_pos + blkwidth <= picwidth && y_pos >= 0 && y_pos + blkheight <= picheight)
264 CreatePad(ref, picwidth, picheight, x_pos, y_pos, &temp[0][0], blkwidth, blkheight);
272 if (x_pos - 2 >= 0 && x_pos + 3 + blkwidth <= picwidth && y_pos >= 0 && y_pos + blkheight <= picheight)
280 CreatePad(ref, picwidth, picheight, x_pos - 2, y_pos, &temp[0][0], blkwidth + 5, blkheight);
288 if (x_pos >= 0 && x_pos + blkwidth <= picwidth && y_pos - 2 >= 0 && y_pos + 3 + blkheight <= picheight)
296 CreatePad(ref, picwidth, picheight, x_pos, y_pos - 2, &temp[0][0], blkwidth, blkheight + 5);
304 if (x_pos - 2 >= 0 && x_pos + 3 + blkwidth <= picwidth && y_pos - 2 >= 0 && y_pos + 3 + blkheight <= picheight)
314 CreatePad(ref, picwidth, picheight, x_pos - 2, y_pos - 2, &temp[0][0], blkwidth + 5, blkheight + 5);
324 if (x_pos - 2 >= 0 && x_pos + 3 + blkwidth <= picwidth && y_pos - 2 >= 0 && y_pos + 3 + blkheight <= picheight)
445 CreatePad(uint8 *ref, int picwidth, int picheight, int x_pos, int y_pos, uint8 *out, int blkwidth, int blkheight) argument
1980 ChromaMotionComp(uint8 *ref, int picwidth, int picheight, int x_pos, int y_pos, uint8 *pred, int pred_pitch, int blkwidth, int blkheight) argument
[all...]
/frameworks/base/media/libstagefright/codecs/avc/enc/src/
H A Dmotion_comp.cpp121 void eLumaMotionComp(uint8 *ref, int picpitch, int picheight, argument
126 (void)(picheight);
1701 void ePadChroma(uint8 *ref, int picwidth, int picheight, int picpitch, int x_pos, int y_pos) argument
1741 else if (y_pos + pad_height >= picheight) /* pad down */
1743 if (x_pos < -8) start = ref + picpitch * (picheight - 1) - 8;
1744 else if (x_pos + pad_width > picwidth + 7) start = ref + picpitch * (picheight - 1) +
1746 else start = ref + picpitch * (picheight - 1) + x_pos;
1757 j = y_pos + pad_height - picheight;
1771 else if (y_pos + pad_height > picheight + 7) start = ref + (picheight
1809 eChromaMotionComp(uint8 *ref, int picwidth, int picheight, int x_pos, int y_pos, uint8 *pred, int picpitch, int blkwidth, int blkheight) argument
[all...]

Completed in 51 milliseconds