Searched refs:picwidth (Results 1 – 2 of 2) sorted by relevance
/frameworks/av/media/libstagefright/codecs/avc/enc/src/ |
D | motion_comp.cpp | 1697 void ePadChroma(uint8 *ref, int picwidth, int picheight, int picpitch, int x_pos, int y_pos) in ePadChroma() argument 1715 else if (x_pos + pad_width > picwidth + 7) start = ref + picwidth + 7 - pad_width; in ePadChroma() 1740 else if (x_pos + pad_width > picwidth + 7) start = ref + picpitch * (picheight - 1) + in ePadChroma() 1741 picwidth + 7 - pad_width; in ePadChroma() 1782 else if (x_pos + pad_width >= picwidth) /* pad right */ in ePadChroma() 1784 if (y_pos < -8) start = ref - (picpitch << 3) + picwidth - 1; in ePadChroma() 1785 …+ pad_height > picheight + 7) start = ref + (picheight + 7 - pad_height) * picpitch + picwidth - 1; in ePadChroma() 1786 else start = ref + y_pos * picpitch + picwidth - 1; in ePadChroma() 1805 void eChromaMotionComp(uint8 *ref, int picwidth, int picheight, in eChromaMotionComp() argument 1814 ePadChroma(ref, picwidth, picheight, picpitch, x_pos, y_pos); in eChromaMotionComp()
|
D | avcenc_lib.h | 425 void eLumaMotionComp(uint8 *ref, int picwidth, int picheight, 455 void eChromaMotionComp(uint8 *ref, int picwidth, int picheight,
|