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

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
H A DarmVCM4P10_CompareMotionCostToMV.c89 * [in] diffMV differential MV
108 OMXVCMotionVector diffMV,
118 sizeCodeNum = armVCM4P10_ExpGolBitsUsed (diffMV.dx);
119 sizeCodeNum += armVCM4P10_ExpGolBitsUsed (diffMV.dy);
105 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.c111 OMXVCMotionVector diffMV, candMV, integerMV; local
186 diffMV.dx = candMV.dx - pMVPred->dx;
187 diffMV.dy = candMV.dy - pMVPred->dy;
193 diffMV,
H A DomxVCM4P10_BlockMatch_Integer.c114 OMXVCMotionVector diffMV; local
198 diffMV.dx = (x * 4) - pMVPred->dx;
199 diffMV.dy = (y * 4) - pMVPred->dy;
202 armVCM4P10_CompareMotionCostToMV ((x * 4), (y * 4), diffMV, candSAD, pBestMV, nLamda, pBestCost);
H A DomxVCM4P10_BlockMatch_Quarter.c111 OMXVCMotionVector diffMV, candMV, initialMV; local
194 diffMV.dx = candMV.dx - pMVPred->dx;
195 diffMV.dy = candMV.dy - pMVPred->dy;
201 diffMV,
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DomxVCM4P2_EncodeMV.c101 OMXVCMotionVector dstMVPred, diffMV; local
156 /* Calculating the differential motion vector (diffMV) */
157 diffMV.dx = pMVCurMB[iBlk].dx - dstMVPred.dx;
158 diffMV.dy = pMVCurMB[iBlk].dy - dstMVPred.dy;
161 if (diffMV.dx == 0)
168 mvHorResidual = ( armAbs(diffMV.dx) - 1) % scaleFactor;
169 mvHorData = (armAbs(diffMV.dx) - mvHorResidual + (scaleFactor - 1))
171 if (diffMV.dx < 0)
178 if (diffMV.dy == 0)
185 mvVerResidual = ( armAbs(diffMV
[all...]
H A DomxVCM4P2_DecodePadMV_PVOP.c106 OMXVCMotionVector diffMV; local
185 diffMV.dx = mvHorData;
189 diffMV.dx = ((armAbs(mvHorData) - 1) * fcodeForward)
193 diffMV.dx = -diffMV.dx;
199 diffMV.dy = mvVerData;
203 diffMV.dy = ((armAbs(mvVerData) - 1) * fcodeForward)
207 diffMV.dy = -diffMV.dy;
222 pDstMVCurMB[iBlk].dx += diffMV
[all...]

Completed in 1106 milliseconds