Home
last modified time | relevance | path

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

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Dmb_motion_comp.cpp102 const static int roundtab16[] = {0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2}; variable
222 dx = PV_SIGN(xsum) * (roundtab16[(PV_ABS(xsum)) & 0xF] + in MBMotionComp()
229 dy = PV_SIGN(xsum) * (roundtab16[(PV_ABS(xsum)) & 0xF] + in MBMotionComp()
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
Dmotion_comp.cpp24 const static Int roundtab16[] = {0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2}; variable
173 dx = PV_SIGN(xsum) * (roundtab16[(PV_ABS(xsum)) & 0xF] + in getMotionCompensatedMB()
175 dy = PV_SIGN(ysum) * (roundtab16[(PV_ABS(ysum)) & 0xF] + in getMotionCompensatedMB()