Searched refs:pSrc (Results 1 - 25 of 85) sorted by relevance

1234

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
H A DomxVCM4P10_InvTransformDequant_ChromaDC.c48 * pSrc - Pointer to the 2x2 array of the 2x2 Hadamard-transformed and
62 * - at least one of the following pointers is NULL: pSrc
63 * - pSrc or pDst is not aligned on an 8-byte boundary
67 const OMX_S16* pSrc,
77 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr)
78 armRetArgErrIf(armNot8ByteAligned(pSrc), OMX_Sts_BadArgErr);
84 m[0][0] = pSrc[0] + pSrc[1] + pSrc[2] + pSrc[
66 omxVCM4P10_InvTransformDequant_ChromaDC( const OMX_S16* pSrc, OMX_S16* pDst, OMX_U32 iQP ) argument
[all...]
H A DarmVCM4P10_UnpackBlock2x2.c54 const OMX_U8 *pSrc = *ppSrc; local
65 Flag = *pSrc++;
69 Value = *pSrc++;
70 Value = Value | ((*pSrc++)<<8);
79 Value = *pSrc++;
90 *ppSrc = pSrc;
H A DarmVCM4P10_UnpackBlock4x4.c54 const OMX_U8 *pSrc = *ppSrc; local
65 Flag = *pSrc++;
69 Value = *pSrc++;
70 Value = Value | ((*pSrc++)<<8);
79 Value = *pSrc++;
90 *ppSrc = pSrc;
H A DarmVCM4P10_InterpolateHalfHor_Luma.c46 * [in] pSrc Pointer to top-left corner of block used to interpolate
60 const OMX_U8* pSrc,
72 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr)
81 pSrc [pos - 2] -
82 5 * pSrc [pos - 1] +
83 20 * pSrc [pos] +
84 20 * pSrc [pos + 1] -
85 5 * pSrc [pos + 2] +
86 pSrc [pos + 3];
59 armVCM4P10_InterpolateHalfHor_Luma( const OMX_U8* pSrc, OMX_U32 iSrcStep, OMX_U8* pDst, OMX_U32 iDstStep, OMX_U32 iWidth, OMX_U32 iHeight ) argument
H A DarmVCM4P10_InterpolateHalfVer_Luma.c47 * [in] pSrc Pointer to top-left corner of block used to interpolate
61 const OMX_U8* pSrc,
73 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr)
83 pSrc [pos - 2 * iSrcStep] -
84 5 * pSrc [pos - 1 * iSrcStep] +
85 20 * pSrc [pos] +
86 20 * pSrc [pos + 1 * iSrcStep] -
87 5 * pSrc [pos + 2 * iSrcStep] +
88 pSrc [pos + 3 * iSrcStep];
60 armVCM4P10_InterpolateHalfVer_Luma( const OMX_U8* pSrc, OMX_U32 iSrcStep, OMX_U8* pDst, OMX_U32 iDstStep, OMX_U32 iWidth, OMX_U32 iHeight ) argument
H A DomxVCM4P10_SADQuar_16x.c27 * This function will calculate SAD of pSrc with average of two Ref blocks
43 * This function calculates the SAD between one block (pSrc) and the average
49 * pSrc - Pointer to the original block; must be aligned on a 16-byte
66 * - One of more of the following pointers is NULL: pSrc, pSrcRef0,
73 const OMX_U8* pSrc,
84 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr)
89 armRetArgErrIf(armNot16ByteAligned(pSrc), OMX_Sts_BadArgErr)
94 (pSrc, pSrcRef0, pSrcRef1, iSrcStep,
72 omxVCM4P10_SADQuar_16x( const OMX_U8* pSrc, const OMX_U8* pSrcRef0, const OMX_U8* pSrcRef1, OMX_U32 iSrcStep, OMX_U32 iRefStep0, OMX_U32 iRefStep1, OMX_U32* pDstSAD, OMX_U32 iHeight ) argument
H A DomxVCM4P10_SADQuar_4x.c27 * This function will calculate SAD of pSrc with average of two Ref blocks
43 * This function calculates the SAD between one block (pSrc) and the average
49 * pSrc - Pointer to the original block; must be aligned on a 4-byte
66 * - One of more of the following pointers is NULL: pSrc, pSrcRef0,
73 const OMX_U8* pSrc,
84 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr);
89 armRetArgErrIf(armNot4ByteAligned(pSrc), OMX_Sts_BadArgErr);
93 (pSrc, pSrcRef0, pSrcRef1, iSrcStep,
72 omxVCM4P10_SADQuar_4x( const OMX_U8* pSrc, const OMX_U8* pSrcRef0, const OMX_U8* pSrcRef1, OMX_U32 iSrcStep, OMX_U32 iRefStep0, OMX_U32 iRefStep1, OMX_U32* pDstSAD, OMX_U32 iHeight ) argument
H A DomxVCM4P10_SADQuar_8x.c27 * This function will calculate SAD of pSrc with average of two Ref blocks
43 * This function calculates the SAD between one block (pSrc) and the average
49 * pSrc - Pointer to the original block; must be aligned on an 8-byte
66 * - One of more of the following pointers is NULL: pSrc, pSrcRef0,
73 const OMX_U8* pSrc,
84 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr)
90 armRetArgErrIf(armNot8ByteAligned(pSrc), OMX_Sts_BadArgErr)
95 (pSrc, pSrcRef0, pSrcRef1, iSrcStep,
72 omxVCM4P10_SADQuar_8x( const OMX_U8* pSrc, const OMX_U8* pSrcRef0, const OMX_U8* pSrcRef1, OMX_U32 iSrcStep, OMX_U32 iRefStep0, OMX_U32 iRefStep1, OMX_U32* pDstSAD, OMX_U32 iHeight ) argument
H A DarmVCM4P10_InterpolateHalfDiag_Luma.c48 * [in] pSrc Pointer to top-left corner of block used to interpolate
62 const OMX_U8* pSrc,
75 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr)
89 pSrc [pos - 2] -
90 5 * pSrc [pos - 1] +
91 20 * pSrc [pos] +
92 20 * pSrc [pos + 1] -
93 5 * pSrc [pos + 2] +
94 pSrc [pos + 3];
61 armVCM4P10_InterpolateHalfDiag_Luma( const OMX_U8* pSrc, OMX_U32 iSrcStep, OMX_U8* pDst, OMX_U32 iDstStep, OMX_U32 iWidth, OMX_U32 iHeight ) argument
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/comm/src/
H A DomxVCCOMM_Copy16x16_s.s7 ; * [in] pSrc - pointer to the reference block in the source frame; must be aligned on an 16-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
30 pSrc RN 0 label
46 LDRD X0,[pSrc],#8 ;//pSrc after loading pSrc=pSrc+8
47 LDRD X1,[pSrc],Count ;//pSrc afte
[all...]
H A DomxVCCOMM_Copy8x8_s.s7 ; * [in] pSrc - pointer to the reference block in the source frame; 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
30 pSrc RN 0 label
45 LDRD X0,[pSrc],Count ;//pSrc after loading : pSrc=pSrc+step
46 LDRD X1,[pSrc],Count
49 LDRD X0,[pSrc],Coun
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
H A DomxVCM4P10_InterpolateLuma_s.s34 ;// [in] pSrc Pointer to the source reference frame buffer
51 ;// pSrc or pDst is not NULL.
91 pSrc RN 0 label
162 STM pArgs, {pSrc,srcStep,pDst,dstStep}
196 SUB pSrc, pSrc, #2
206 SUB pSrc, pSrc, #2
215 SUB pSrc, pSrc, #
[all...]
H A DarmVCM4P10_InterpolateLuma_Copy_unsafe_s.s30 ;// Implements copy from an arbitrary aligned source memory location (pSrc) to an aligned
47 pSrc RN 0 label
65 AND Temp, pSrc, #3
66 BIC pSrc, pSrc, #3
76 M_LDR x0, [pSrc], srcStep
77 M_LDR x1, [pSrc], srcStep
79 M_LDR x2, [pSrc], srcStep
81 M_LDR x3, [pSrc], srcStep
87 LDR x1, [pSrc, #
[all...]
H A DarmVCM4P10_UnpackBlock4x4_s.s47 pSrc RN 2 ;// Persistent variables label
57 LDR pSrc, [ppSrc] ;// Load pSrc
66 LDRB Flag, [pSrc], #1 ;// Preload <Flag> before <unpackLoop>
76 ;// that can be easily taken care by loading the data from <pSrc> stream as
87 LDRSBNE Value2,[pSrc,#1] ;// Load byte wise to avoid unaligned access
88 LDRBNE Value, [pSrc], #2
90 LDRSBEQ Value, [pSrc], #1 ;// Value = (OMX_U8) *pSrc++
91 ORRNE Value,Value,Value2, LSL #8 ;// Value = (OMX_U16) *pSrc
[all...]
H A DomxVCM4P10_InterpolateChroma.c48 * [in] pSrc Pointer to the source reference frame buffer
65 * pSrc or pDst is NULL.
77 const OMX_U8* pSrc,
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
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/
H A DomxVCCOMM_Copy16x16_s.s7 ; * [in] pSrc - pointer to the reference block in the source frame; must be aligned on an 16-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
28 pSrc RN 0 label
48 VLD1 {X0,X1},[pSrc@128],step ;// Load 16 bytes from 16 byte aligned pSrc and pSrc=pSrc + step after loading
49 VLD1 {X2,X3},[pSrc@128],step
50 VLD1 {X4,X5},[pSrc
[all...]
H A DomxVCCOMM_Copy8x8_s.s7 ; * [in] pSrc - pointer to the reference block in the source frame; 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
28 pSrc RN 0 label
45 VLD1 {X0},[pSrc],step ;// Load 8 bytes from 8 byte aligned pSrc, pSrc=pSrc+step after load
46 VLD1 {X1},[pSrc],step
47 VLD1 {X2},[pSrc],ste
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/comm/src/
H A DomxVCCOMM_Copy16x16.c45 * pSrc - pointer to the reference macroblock in the source frame; must be
61 * - one or more of the following pointers is NULL: pSrc, pDst
63 * boundary: pSrc, pDst
69 const OMX_U8 *pSrc,
78 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr);
80 armRetArgErrIf(!armIs16ByteAligned(pSrc), 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.c45 * pSrc - pointer to the reference block in the source frame; must be
61 * - one or more of the following pointers is NULL: pSrc, pDst
63 * boundary: pSrc, pDst
69 const OMX_U8 *pSrc,
78 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr);
80 armRetArgErrIf(!armIs8ByteAligned(pSrc), 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.c45 * pSrc - pointer to the source plane. This should be aligned on an 8-byte
61 * pSrc, pSrcRef, pDst.
62 * - pSrc is not 8-byte aligned.
70 const OMX_U8 *pSrc,
80 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr);
83 armRetArgErrIf(!armIs8ByteAligned(pSrc), OMX_Sts_BadArgErr);
91 y++, pSrc += srcStep)
95 pDst[count] = pSrc[x] - pSrcRef[count];
69 omxVCCOMM_ComputeTextureErrorBlock( const OMX_U8 *pSrc, OMX_INT srcStep, const OMX_U8 *pSrcRef, OMX_S16 * pDst ) argument
H A DomxVCCOMM_ComputeTextureErrorBlock_SAD.c46 * pSrc - pointer to the source plane; must be aligned on an 8-byte
63 * pointers is NULL: pSrc, pSrcRef, pDst and pDstSAD.
64 * - pSrc is not 8-byte aligned.
72 const OMX_U8 *pSrc,
83 armRetArgErrIf(pSrc == NULL, OMX_Sts_BadArgErr);
87 armRetArgErrIf(!armIs8ByteAligned(pSrc), OMX_Sts_BadArgErr);
95 y++, pSrc += srcStep)
99 pDst[count] = pSrc[x] - pSrcRef[count];
71 omxVCCOMM_ComputeTextureErrorBlock_SAD( const OMX_U8 *pSrc, OMX_INT srcStep, const OMX_U8 *pSrcRef, OMX_S16 * pDst, OMX_INT *pDstSAD ) argument
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DomxVCM4P2_MCReconBlock.c48 * [in] pSrc pointer to the block in the reference plane.
57 const OMX_U8 *pSrc,
66 pTempSrc1 = pSrc;
67 pTempSrc2 = pSrc + srcStep;
90 * [in] pSrc pointer to the block in the reference plane.
99 const OMX_U8 *pSrc,
108 pTempSrc1 = pSrc;
135 * [in] pSrc pointer to the block in the reference plane.
144 const OMX_U8 *pSrc,
155 pTempSrc1 = pSrc;
56 armVCM4P2_HalfPelVer( const OMX_U8 *pSrc, OMX_INT srcStep, OMX_U8 *pDst, OMX_INT rndVal) argument
98 armVCM4P2_HalfPelHor( const OMX_U8 *pSrc, OMX_INT srcStep, OMX_U8 *pDst, OMX_INT rndVal) argument
143 armVCM4P2_HalfPelVerHor( const OMX_U8 *pSrc, OMX_INT srcStep, OMX_U8 *pDst, OMX_INT rndVal) argument
197 armVCM4P2_MCReconBlock_NoRes( const OMX_U8 *pSrc, OMX_INT srcStep, OMX_U8 *pDst, OMX_INT dstStep) argument
238 armVCM4P2_MCReconBlock_Res( const OMX_U8 *pSrc, const OMX_S16 *pSrcResidue, OMX_U8 *pDst, OMX_INT dstStep) argument
302 omxVCM4P2_MCReconBlock( const OMX_U8 *pSrc, OMX_INT srcStep, const OMX_S16 *pSrcResidue, OMX_U8 *pDst, OMX_INT dstStep, OMX_INT predictType, OMX_INT rndVal) argument
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
H A DarmVCM4P10_InterpolateLuma_Copy_unsafe_s.s30 ;// Implements copy from an arbitrary aligned source memory location (pSrc) to an aligned
47 pSrc RN 0 label
65 AND Temp, pSrc, #3
66 BIC pSrc, pSrc, #3
76 M_LDR x0, [pSrc], srcStep
77 M_LDR x1, [pSrc], srcStep
79 M_LDR x2, [pSrc], srcStep
81 M_LDR x3, [pSrc], srcStep
87 LDR x1, [pSrc, #
[all...]
H A DarmVCM4P10_UnpackBlock4x4_s.s47 pSrc RN 2 ;// Persistent variables label
57 LDR pSrc, [ppSrc] ;// Load pSrc
66 LDRB Flag, [pSrc], #1 ;// Preload <Flag> before <unpackLoop>
76 ;// that can be easily taken care by loading the data from <pSrc> stream as
87 LDRSBNE Value2,[pSrc,#1] ;// Load byte wise to avoid unaligned access
88 LDRBNE Value, [pSrc], #2
90 LDRSBEQ Value, [pSrc], #1 ;// Value = (OMX_U8) *pSrc++
91 ORRNE Value,Value,Value2, LSL #8 ;// Value = (OMX_U16) *pSrc
[all...]
H A DomxVCM4P10_InterpolateChroma.c48 * [in] pSrc Pointer to the source reference frame buffer
65 * pSrc or pDst is NULL.
77 const OMX_U8* pSrc,
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

Completed in 319 milliseconds

1234