Searched defs:diffMV (Results 1 - 6 of 6) sorted by path

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
H A DarmVCM4P10_CompareMotionCostToMV.c74 * [in] diffMV differential MV
93 OMXVCMotionVector diffMV,
103 sizeCodeNum = armVCM4P10_ExpGolBitsUsed (diffMV.dx);
104 sizeCodeNum += armVCM4P10_ExpGolBitsUsed (diffMV.dy);
90 armVCM4P10_CompareMotionCostToMV( OMX_S16 mvX, OMX_S16 mvY, OMXVCMotionVector diffMV, OMX_INT candSAD, OMXVCMotionVector *bestMV, OMX_U32 nLamda, OMX_S32 *pBestCost ) argument
H A DomxVCM4P10_BlockMatch_Half.c96 OMXVCMotionVector diffMV, candMV, integerMV; local
171 diffMV.dx = candMV.dx - pMVPred->dx;
172 diffMV.dy = candMV.dy - pMVPred->dy;
178 diffMV,
H A DomxVCM4P10_BlockMatch_Integer.c99 OMXVCMotionVector diffMV; local
183 diffMV.dx = (x * 4) - pMVPred->dx;
184 diffMV.dy = (y * 4) - pMVPred->dy;
187 armVCM4P10_CompareMotionCostToMV ((x * 4), (y * 4), diffMV, candSAD, pBestMV, nLamda, pBestCost);
H A DomxVCM4P10_BlockMatch_Quarter.c96 OMXVCMotionVector diffMV, candMV, initialMV; local
179 diffMV.dx = candMV.dx - pMVPred->dx;
180 diffMV.dy = candMV.dy - pMVPred->dy;
186 diffMV,
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DomxVCM4P2_DecodePadMV_PVOP.c91 OMXVCMotionVector diffMV; local
170 diffMV.dx = mvHorData;
174 diffMV.dx = ((armAbs(mvHorData) - 1) * fcodeForward)
178 diffMV.dx = -diffMV.dx;
184 diffMV.dy = mvVerData;
188 diffMV.dy = ((armAbs(mvVerData) - 1) * fcodeForward)
192 diffMV.dy = -diffMV.dy;
207 pDstMVCurMB[iBlk].dx += diffMV
[all...]
H A DomxVCM4P2_EncodeMV.c86 OMXVCMotionVector dstMVPred, diffMV; local
141 /* Calculating the differential motion vector (diffMV) */
142 diffMV.dx = pMVCurMB[iBlk].dx - dstMVPred.dx;
143 diffMV.dy = pMVCurMB[iBlk].dy - dstMVPred.dy;
146 if (diffMV.dx == 0)
153 mvHorResidual = ( armAbs(diffMV.dx) - 1) % scaleFactor;
154 mvHorData = (armAbs(diffMV.dx) - mvHorResidual + (scaleFactor - 1))
156 if (diffMV.dx < 0)
163 if (diffMV.dy == 0)
170 mvVerResidual = ( armAbs(diffMV
[all...]

Completed in 175 milliseconds