OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:diffMV
(Results
1 - 5
of
5
) sorted by null
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_BlockMatch_Half.c
96
OMXVCMotionVector
diffMV
, candMV, integerMV;
171
diffMV
.dx = candMV.dx - pMVPred->dx;
172
diffMV
.dy = candMV.dy - pMVPred->dy;
178
diffMV
,
omxVCM4P10_BlockMatch_Integer.c
99
OMXVCMotionVector
diffMV
;
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);
omxVCM4P10_BlockMatch_Quarter.c
96
OMXVCMotionVector
diffMV
, candMV, initialMV;
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/
omxVCM4P2_DecodePadMV_PVOP.c
91
OMXVCMotionVector
diffMV
;
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
.dx
[
all
...]
omxVCM4P2_EncodeMV.c
86
OMXVCMotionVector dstMVPred,
diffMV
;
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
.dy) - 1) % scaleFactor
[
all
...]
Completed in 241 milliseconds