Searched refs:picpitch (Results 1 – 1 of 1) sorted by relevance
/frameworks/av/media/libstagefright/codecs/avc/enc/src/ |
D | motion_comp.cpp | 121 void eLumaMotionComp(uint8 *ref, int picpitch, int picheight, in eLumaMotionComp() argument 141 ref += y_pos * picpitch + x_pos; in eLumaMotionComp() 143 eFullPelMC(ref, picpitch, pred, pred_pitch, blkwidth, blkheight); in eLumaMotionComp() 149 ref += y_pos * picpitch + x_pos; in eLumaMotionComp() 151 eHorzInterp1MC(ref, picpitch, pred, pred_pitch, blkwidth, blkheight, dx); in eLumaMotionComp() 156 ref += y_pos * picpitch + x_pos; in eLumaMotionComp() 158 eVertInterp1MC(ref, picpitch, pred, pred_pitch, blkwidth, blkheight, dy); in eLumaMotionComp() 163 ref += y_pos * picpitch + x_pos - 2; /* move to the left 2 pixels */ in eLumaMotionComp() 165 eVertInterp2MC(ref, picpitch, &temp2[0][0], 21, blkwidth + 5, blkheight); in eLumaMotionComp() 172 ref += (y_pos - 2) * picpitch + x_pos; /* move to up 2 lines */ in eLumaMotionComp() [all …]
|