Home
last modified time | relevance | path

Searched refs:xsum (Results 1 – 2 of 2) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Dmb_motion_comp.cpp151 int xsum; in MBMotionComp() local
225 xsum = px[0] + px[1] + px[2] + px[3]; in MBMotionComp()
226 dx = PV_SIGN(xsum) * (roundtab16[(PV_ABS(xsum)) & 0xF] + in MBMotionComp()
227 (((PV_ABS(xsum)) >> 4) << 1)); in MBMotionComp()
232 xsum = py[0] + py[1] + py[2] + py[3]; in MBMotionComp()
233 dy = PV_SIGN(xsum) * (roundtab16[(PV_ABS(xsum)) & 0xF] + in MBMotionComp()
234 (((PV_ABS(xsum)) >> 4) << 1)); in MBMotionComp()
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
Dmotion_comp.cpp111 Int xsum, ysum; in getMotionCompensatedMB() local
170 xsum = mot[1].x + mot[2].x + mot[3].x + mot[4].x; in getMotionCompensatedMB()
173 dx = PV_SIGN(xsum) * (roundtab16[(PV_ABS(xsum)) & 0xF] + in getMotionCompensatedMB()
174 (((PV_ABS(xsum)) >> 4) << 1)); in getMotionCompensatedMB()