HomeSort by relevance Sort by last modified time
    Searched refs:coeffCount (Results 1 - 4 of 4) sorted by null

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
omxVCM4P2_QuantInvInter_I.c 64 OMX_INT coeffCount, Sign;
71 for (coeffCount = 0; coeffCount < 64; coeffCount++)
74 Sign = armSignCheck (pSrcDst[coeffCount]);
79 pSrcDst[coeffCount] = (2* armAbs(pSrcDst[coeffCount]) + 1) * QP;
80 pSrcDst[coeffCount] *= Sign;
84 pSrcDst[coeffCount] = (2* armAbs(pSrcDst[coeffCount]) + 1
    [all...]
omxVCM4P2_QuantInter_I.c 64 OMX_INT coeffCount;
92 for (coeffCount = 0; coeffCount < 64; coeffCount++)
94 fSign = armSignCheck (pSrcDst[coeffCount]);
95 pSrcDst[coeffCount] = (armAbs(pSrcDst[coeffCount])
97 pSrcDst[coeffCount] *= fSign;
100 if (coeffCount == 0)
102 pSrcDst[coeffCount]
    [all...]
omxVCM4P2_QuantInvIntra_I.c 66 OMX_INT dcScaler = 0, coeffCount, Sign;
127 for (coeffCount = 1; coeffCount < 64; coeffCount++)
130 Sign = armSignCheck (pSrcDst[coeffCount]);
134 pSrcDst[coeffCount] = (2* armAbs(pSrcDst[coeffCount]) + 1) * QP;
135 pSrcDst[coeffCount] *= Sign;
139 pSrcDst[coeffCount] =
140 (2* armAbs(pSrcDst[coeffCount]) + 1) * QP - 1
    [all...]
omxVCM4P2_QuantIntra_I.c 69 OMX_INT dcScaler = 0, coeffCount,fSign;
137 for (coeffCount = 1; coeffCount < 64; coeffCount++)
139 fSign = armSignCheck (pSrcDst[coeffCount]);
140 pSrcDst[coeffCount] = armAbs(pSrcDst[coeffCount])/(2 * QP);
141 pSrcDst[coeffCount] *= fSign;
144 pSrcDst[coeffCount] =
145 (OMX_S16) armClip (minClpAC, maxClpAC, pSrcDst[coeffCount]);
    [all...]

Completed in 1349 milliseconds