Searched refs:pDst (Results 1 - 25 of 109) sorted by relevance

12345

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DarmVCM4P2_FillVLDBuffer.c54 * [out] pDst pointer to the coefficient buffer of current
63 OMX_S16 * pDst,
74 pDst[pZigzagTable[*pIndex]] = 0;
79 pDst[pZigzagTable[*pIndex]] = -storeLevel;
83 pDst[pZigzagTable[*pIndex]] = storeLevel;
92 pDst[pZigzagTable[*pIndex]] = 0;
61 armVCM4P2_FillVLDBuffer( OMX_U32 storeRun, OMX_S16 * pDst, OMX_S16 storeLevel, OMX_U8 sign, OMX_U8 last, OMX_U8 * pIndex, const OMX_U8 * pZigzagTable ) argument
H A DomxVCM4P2_IDCT8x8blk.c57 * pDst - pointer to the start of the linearly arranged IDCT output buffer;
64 * - pSrc or pDst is NULL.
65 * - pSrc or pDst is not 16-byte aligned.
68 OMXResult omxVCM4P2_IDCT8x8blk (const OMX_S16 *pSrc, OMX_S16 *pDst) argument
75 armRetArgErrIf(pDst == NULL, OMX_Sts_BadArgErr);
76 armRetArgErrIf(!armIs16ByteAligned(pDst), OMX_Sts_BadArgErr);
92 pDst[(x * 8) + y] = (OMX_S16) floor(sum + 0.5);
95 pDst[(x * 8) + y] = armClip (
98 pDst[(x * 8) + y]);
H A DomxVCM4P2_TransRecBlockCoef_inter.c58 * pDst - pointer to the quantized DCT coefficients buffer; must be aligned
70 * - pDst
78 OMX_S16 * pDst,
96 armRetArgErrIf(pDst == NULL, OMX_Sts_BadArgErr);
99 armRetArgErrIf(!armIs16ByteAligned(pDst), OMX_Sts_BadArgErr);
102 omxVCM4P2_DCT8x8blk (pSrc, pDst);
104 pDst,
110 pTempBuffer[i] = pDst[i];
76 omxVCM4P2_TransRecBlockCoef_inter( const OMX_S16 *pSrc, OMX_S16 * pDst, OMX_S16 * pRec, OMX_U8 QP, OMX_INT shortVideoHeader ) argument
H A DomxVCM4P2_DecodeVLCZigzag_IntraDCVLC.c86 * pDst - pointer to the coefficient buffer of current block; must be
94 * ppBitStream, *ppBitStream, pBitOffset, pDst
97 * - pDst is not 4-byte aligned
110 OMX_S16 * pDst,
125 armRetArgErrIf(pDst == NULL, OMX_Sts_BadArgErr);
126 armRetArgErrIf(!armIs4ByteAligned(pDst), OMX_Sts_BadArgErr);
147 pDst[0] = 0;
159 pDst[0] = (OMX_S16) (fetchDCbits ^ (powOfSize - 1));
160 pDst[0] = -pDst[
107 omxVCM4P2_DecodeVLCZigzag_IntraDCVLC( const OMX_U8 ** ppBitStream, OMX_INT * pBitOffset, OMX_S16 * pDst, OMX_U8 predDir, OMX_INT shortVideoHeader, OMXVCM4P2VideoComponent videoComp ) argument
[all...]
H A DomxVCM4P2_DecodeVLCZigzag_IntraACVLC.c79 * pDst - pointer to the coefficient buffer of current block; must be
86 * pointers is NULL: ppBitStream, *ppBitStream, pBitOffset, pDst,
88 * *pBitOffset exceeds [0,7], preDir exceeds [0,2], or pDst is
101 OMX_S16 * pDst,
111 pDst,
98 omxVCM4P2_DecodeVLCZigzag_IntraACVLC( const OMX_U8 ** ppBitStream, OMX_INT * pBitOffset, OMX_S16 * pDst, OMX_U8 predDir, OMX_INT shortVideoHeader ) argument
H A DomxVCM4P2_DCT8x8blk.c54 * pDst - pointer to the start of the linearly arranged output buffer; must
61 * - pSrc or pDst is NULL.
62 * - pSrc or pDst is not 16-byte aligned.
66 OMXResult omxVCM4P2_DCT8x8blk (const OMX_S16 *pSrc, OMX_S16 *pDst) argument
73 armRetArgErrIf(pDst == NULL, OMX_Sts_BadArgErr);
74 armRetArgErrIf(!armIs16ByteAligned(pDst), OMX_Sts_BadArgErr);
91 pDst[(u * 8) + v]= armRoundFloatToS16 (sum);
H A DomxVCM4P2_DecodeBlockCoef_Inter.c68 * pDst - pointer to the decoded residual buffer (a contiguous array of 64
77 * ppBitStream, *ppBitStream, pBitOffset , pDst
80 * - pDst is not 16-byte aligned
87 OMX_S16 * pDst,
104 armRetArgErrIf(pDst == NULL, OMX_Sts_BadArgErr);
105 armRetArgErrIf(!armIs16ByteAligned(pDst), OMX_Sts_BadArgErr);
122 errorCode = omxVCM4P2_IDCT8x8blk(pTempBuf1, pDst);
84 omxVCM4P2_DecodeBlockCoef_Inter( const OMX_U8 ** ppBitStream, OMX_INT * pBitOffset, OMX_S16 * pDst, OMX_INT QP, OMX_INT shortVideoHeader ) argument
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
H A DarmVCM4P10_FwdTransformResidual4x4.c45 * [out] pDst Destination 4x4 block
48 void armVCM4P10_FwdTransformResidual4x4(OMX_S16* pDst, OMX_S16 *pSrc) argument
67 pDst[i+0] = (OMX_S16)f0;
68 pDst[i+1] = (OMX_S16)f1;
69 pDst[i+2] = (OMX_S16)f2;
70 pDst[i+3] = (OMX_S16)f3;
76 int f0 = pDst[i+0];
77 int f1 = pDst[i+4];
78 int f2 = pDst[i+8];
79 int f3 = pDst[
[all...]
H A DarmVCM4P10_TransformResidual4x4.c45 * [out] pDst Destination 4x4 block
49 void armVCM4P10_TransformResidual4x4(OMX_S16* pDst, OMX_S16 *pSrc) argument
68 pDst[i+0] = (OMX_S16)f0;
69 pDst[i+1] = (OMX_S16)f1;
70 pDst[i+2] = (OMX_S16)f2;
71 pDst[i+3] = (OMX_S16)f3;
77 int f0 = pDst[i+0];
78 int f1 = pDst[i+4];
79 int f2 = pDst[i+8];
80 int f3 = pDst[
[all...]
H A DomxVCM4P10_TransformDequantChromaDCFromPair.c45 OMX_S16* pDst,
57 Value = (pDst[i] * Scale) << Shift;
58 pDst[i] = (OMX_S16)Value;
65 Value = (pDst[i] * Scale) >> 1;
66 pDst[i] = (OMX_S16)Value;
114 * pDst - Pointer to the reconstructed 2x2 ChromaDC coefficients buffer;
120 * - ppSrc or pDst is NULL.
121 * - pDst is not 4-byte aligned.
128 OMX_S16* pDst,
134 armRetArgErrIf(pDst
44 DequantChromaDC2x2( OMX_S16* pDst, OMX_INT QP ) argument
126 omxVCM4P10_TransformDequantChromaDCFromPair( const OMX_U8 **ppSrc, OMX_S16* pDst, OMX_INT QP ) argument
[all...]
H A DarmVCM4P10_Interpolate_Luma.c51 * [out] pDst Pointer to the interpolation buffer
60 OMX_U8* pDst,
72 pDst [y * iDstStep + x] = pSrc [y * iSrcStep + x];
97 * [out] pDst Pointer to the interpolation buffer
107 OMX_U8 *pDst,
121 armRetArgErrIf(pDst == NULL, OMX_Sts_BadArgErr)
141 armM4P10_Copy(pSrc, iSrcStep, pDst, iDstStep, iWidth, iHeight);
147 (pSrcHalfHor, iSrcStep, pDst, iDstStep, iWidth, iHeight);
152 (pDst, pSrcHalfVer, iDstStep, iSrcStep, pDst, iDstSte
57 armM4P10_Copy( const OMX_U8* pSrc, OMX_U32 iSrcStep, OMX_U8* pDst, OMX_U32 iDstStep, OMX_U32 iWidth, OMX_U32 iHeight ) argument
104 armVCM4P10_Interpolate_Luma( const OMX_U8 *pSrc, OMX_U32 iSrcStep, OMX_U8 *pDst, OMX_U32 iDstStep, OMX_U32 iWidth, OMX_U32 iHeight, OMX_U32 dx, OMX_U32 dy ) argument
[all...]
H A DarmVCM4P10_UnpackBlock2x2.c46 * [out] pDst Pointer to unpacked 4x4 block
51 OMX_S16* pDst
60 pDst[i] = 0;
86 pDst[i] = (OMX_S16)Value;
H A DarmVCM4P10_UnpackBlock4x4.c46 * [out] pDst Pointer to unpacked 4x4 block
51 OMX_S16* pDst
60 pDst[i] = 0;
86 pDst[i] = (OMX_S16)Value;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/comm/src/
H A DomxVCCOMM_Copy16x16_s.s10 ; * [out] pDst - pointer to the destination block; must be aligned on an 8-byte boundary.
14 ; * - one or more of the following pointers is NULL: pSrc, pDst
15 ; * - one or more of the following pointers is not aligned on an 16-byte boundary: pSrc, pDst
31 pDst RN 1 label
50 STRD X0,[pDst],#8
52 STRD X1,[pDst],#8
56 STRD X0,[pDst],#8
58 STRD X1,[pDst],#8
62 STRD X0,[pDst],#8
64 STRD X1,[pDst],#
[all...]
H A DomxVCCOMM_Copy8x8_s.s10 ; * [out] pDst - pointer to the destination block; must be aligned on an 8-byte boundary.
14 ; * - one or more of the following pointers is NULL: pSrc, pDst
15 ; * - one or more of the following pointers is not aligned on an 8-byte boundary: pSrc, pDst
31 pDst RN 1 label
48 STRD X0,[pDst],#8
50 STRD X1,[pDst],#8
53 STRD X0,[pDst],#8
55 STRD X1,[pDst],#8
58 STRD X0,[pDst],#8
60 STRD X1,[pDst],#
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DarmVCM4P2_Clip8_s.s43 pDst RN 1 label
67 STRB x0, [pDst]
69 STRB x0, [pDst,#1]
70 STRB x1, [pDst,#2]
72 STRB x1, [pDst,#3]
76 STRB x2, [pDst,#4]
78 STRB x2, [pDst,#5]
79 STRB x3, [pDst,#6]
81 STRB x3, [pDst,#7]
82 ADD pDst,pDs
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/comm/src/
H A DomxVCCOMM_Copy16x16.c53 * pDst - pointer to the destination macroblock; must be aligned on a
61 * - one or more of the following pointers is NULL: pSrc, pDst
63 * boundary: pSrc, pDst
70 OMX_U8 *pDst,
79 armRetArgErrIf(pDst == NULL, OMX_Sts_BadArgErr);
81 armRetArgErrIf(!armIs16ByteAligned(pDst), OMX_Sts_BadArgErr);
90 pDst[index] = pSrc[count];
68 omxVCCOMM_Copy16x16( const OMX_U8 *pSrc, OMX_U8 *pDst, OMX_INT step) argument
H A DomxVCCOMM_Copy8x8.c53 * pDst - pointer to the destination block; must be aligned on an 8-byte
61 * - one or more of the following pointers is NULL: pSrc, pDst
63 * boundary: pSrc, pDst
70 OMX_U8 *pDst,
79 armRetArgErrIf(pDst == NULL, OMX_Sts_BadArgErr);
81 armRetArgErrIf(!armIs8ByteAligned(pDst), OMX_Sts_BadArgErr);
90 pDst[index] = pSrc[count];
68 omxVCCOMM_Copy8x8( const OMX_U8 *pSrc, OMX_U8 *pDst, OMX_INT step) argument
H A DomxVCCOMM_ComputeTextureErrorBlock_SAD.c54 * pDst - pointer to the destination buffer, an 8x8 block; must be aligned
63 * pointers is NULL: pSrc, pSrcRef, pDst and pDstSAD.
67 * - pDst is not 8-byte aligned.
75 OMX_S16 * pDst,
85 armRetArgErrIf(pDst == NULL, OMX_Sts_BadArgErr);
89 armRetArgErrIf(!armIs8ByteAligned(pDst), OMX_Sts_BadArgErr);
99 pDst[count] = pSrc[x] - pSrcRef[count];
100 *pDstSAD += armAbs(pDst[count]);
71 omxVCCOMM_ComputeTextureErrorBlock_SAD( const OMX_U8 *pSrc, OMX_INT srcStep, const OMX_U8 *pSrcRef, OMX_S16 * pDst, OMX_INT *pDstSAD ) argument
H A DomxVCCOMM_ComputeTextureErrorBlock.c53 * pDst - pointer to the destination buffer, an 8x8 block. This should be
61 * pSrc, pSrcRef, pDst.
65 * - pDst is not 8-byte aligned
73 OMX_S16 * pDst
82 armRetArgErrIf(pDst == NULL, OMX_Sts_BadArgErr);
85 armRetArgErrIf(!armIs8ByteAligned(pDst), OMX_Sts_BadArgErr);
95 pDst[count] = pSrc[x] - pSrcRef[count];
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
H A DomxVCM4P10_InterpolateChroma.c57 * [out] pDst Pointer to the destination frame buffer.
65 * pSrc or pDst is NULL.
69 * roi.width is equal to 2, but pDst is not 2-byte aligned.
70 * roi.width is equal to 4, but pDst is not 4-byte aligned.
71 * roi.width is equal to 8, but pDst is not 8 byte aligned.
79 OMX_U8* pDst,
87 ((OMX_U8*)pSrc, srcStep, pDst, dstStep, roi.width, roi.height, dx, dy);
76 omxVCM4P10_InterpolateChroma( const OMX_U8* pSrc, OMX_S32 srcStep, OMX_U8* pDst, OMX_S32 dstStep, OMX_S32 dx, OMX_S32 dy, OMXSize roi ) argument
H A DarmVCM4P10_UnpackBlock4x4_s.s42 pDst RN 1 ;// Persistent variable label
61 ; Firstly, fill all the coefficient values on the <pDst> buffer by zero
68 STRD Value, [pDst, #0] ;// pDst[0] = pDst[1] = pDst[2] = pDst[3] = 0
69 STRD Value, [pDst, #8] ;// pDst[4] = pDst[
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
H A DomxVCM4P10_InterpolateChroma.c57 * [out] pDst Pointer to the destination frame buffer.
65 * pSrc or pDst is NULL.
69 * roi.width is equal to 2, but pDst is not 2-byte aligned.
70 * roi.width is equal to 4, but pDst is not 4-byte aligned.
71 * roi.width is equal to 8, but pDst is not 8 byte aligned.
79 OMX_U8* pDst,
87 ((OMX_U8*)pSrc, srcStep, pDst, dstStep, roi.width, roi.height, dx, dy);
76 omxVCM4P10_InterpolateChroma( const OMX_U8* pSrc, OMX_S32 srcStep, OMX_U8* pDst, OMX_S32 dstStep, OMX_S32 dx, OMX_S32 dy, OMXSize roi ) argument
H A DarmVCM4P10_UnpackBlock4x4_s.s42 pDst RN 1 ;// Persistent variable label
61 ; Firstly, fill all the coefficient values on the <pDst> buffer by zero
68 STRD Value, [pDst, #0] ;// pDst[0] = pDst[1] = pDst[2] = pDst[3] = 0
69 STRD Value, [pDst, #8] ;// pDst[4] = pDst[
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DarmVCM4P2_Clip8_s.s40 pDst RN 1 label
71 VST1 {dclip0},[pDst],step ;// store 8 bytes and pDst=pDst+step
72 VST1 {dclip1},[pDst],step ;// store 8 bytes and pDst=pDst+step
75 VST1 {dclip2},[pDst],step
76 VST1 {dclip3},[pDst],step
82 VST1 {dclip0},[pDst],ste
[all...]

Completed in 274 milliseconds

12345