Searched refs:pPlaneIn (Results 1 - 18 of 18) sorted by relevance

/frameworks/av/libvideoeditor/vss/common/inc/
H A DM4VIFI_FiltersAPI.h189 M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut);
191 M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut);
193 M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut);
195 M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut);
197 M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut);
199 M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut);
201 M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut);
203 M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut);
205 M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut);
207 M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlan
[all...]
H A DM4VPP_API.h71 * @param pPlaneIn: (INOUT) Input Image
75 typedef M4OSA_ERR (M4VPP_apply_fct) (M4VPP_Context pContext, M4VIFI_ImagePlane* pPlaneIn,
95 * M4OSA_ERR M4VPP_applyVideoPreprocessing(M4VPP_Context pContext, M4VIFI_ImagePlane* pPlaneIn,
100 * @param pPlaneIn: (INOUT) Input Image
103 * @return M4ERR_PARAMETER: pContext or pPlaneIn or pPlaneOut is NULL (debug only).
108 M4OSA_ERR M4VPP_applyVideoPreprocessing(M4VPP_Context pContext, M4VIFI_ImagePlane* pPlaneIn,
/frameworks/av/libvideoeditor/vss/video_filters/src/
H A DM4VIFI_ResizeRGB565toRGB565.c34 * M4VIFI_UInt8 M4VIFI_ResizeBilinearRGB565toRGB565(void *pUserData, M4VIFI_ImagePlane *pPlaneIn,
38 * @param pPlaneIn: (IN) Pointer to RGB565 (Planar) plane buffer
46 M4VIFI_ImagePlane *pPlaneIn,
68 if ((IS_EVEN(pPlaneIn->u_height) == FALSE) ||
73 if ((IS_EVEN(pPlaneIn->u_width) == FALSE) ||
79 pu16_data_in = (M4VIFI_UInt16*)(pPlaneIn->pac_data + pPlaneIn->u_topleft);
83 u32_stride_in = pPlaneIn->u_stride;
87 u32_width_in = pPlaneIn->u_width;
88 u32_height_in = pPlaneIn
45 M4VIFI_ResizeBilinearRGB565toRGB565(void *pUserData, M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut) argument
[all...]
H A DM4VIFI_ResizeRGB888toRGB888.c34 * M4VIFI_UInt8 M4VIFI_ResizeBilinearRGB888toRGB888(void *pUserData, M4VIFI_ImagePlane *pPlaneIn,
51 * @param pPlaneIn: (IN) Pointer to YUV420 (Planar) plane buffer
59 M4VIFI_ImagePlane *pPlaneIn,
80 if ((IS_EVEN(pPlaneIn->u_height) == FALSE) ||
86 if ((IS_EVEN(pPlaneIn->u_width) == FALSE) ||
94 pu8_data_in = (M4VIFI_UInt8*)(pPlaneIn->pac_data + pPlaneIn->u_topleft);
98 u32_stride_in = pPlaneIn->u_stride;
102 u32_width_in = pPlaneIn->u_width;
103 u32_height_in = pPlaneIn
58 M4VIFI_ResizeBilinearRGB888toRGB888(void *pUserData, M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut) argument
[all...]
H A DM4VIFI_BGR565toYUV420.c34 * M4VIFI_UInt8 M4VIFI_BGR565toYUV420 (void *pUserData, M4VIFI_ImagePlane *pPlaneIn,
45 * @param pPlaneIn: (IN) Pointer to BGR565 Plane
53 M4VIFI_UInt8 M4VIFI_BGR565toYUV420(void *pUserData, M4VIFI_ImagePlane *pPlaneIn, argument
73 if( (pPlaneIn->u_height != pPlaneOut[0].u_height) ||
81 if( (pPlaneIn->u_width != pPlaneOut[0].u_width) ||
94 pu8_bgrn_data = pPlaneIn->pac_data + pPlaneIn->u_topleft;
107 u32_stride_bgr = pPlaneIn->u_stride;
H A DM4VIFI_RGB565toYUV420.c36 * M4VIFI_ImagePlane *pPlaneIn,
47 * @param pPlaneIn: (IN) Pointer to RGB565 Plane
54 M4VIFI_UInt8 M4VIFI_RGB565toYUV420(void *pUserData, M4VIFI_ImagePlane *pPlaneIn, argument
74 if ((pPlaneIn->u_height != pPlaneOut[0].u_height) ||
82 if ((pPlaneIn->u_width != pPlaneOut[0].u_width) ||
95 pu8_rgbn_data = pPlaneIn->pac_data + pPlaneIn->u_topleft;
108 u32_stride_rgb = pPlaneIn->u_stride;
H A DM4VIFI_ResizeYUVtoBGR565.c34 * M4VIFI_UInt8 M4VIFI_ResizeBilinearYUV420toBGR565(void *pContext, M4VIFI_ImagePlane *pPlaneIn,
51 * @param pPlaneIn: (IN) Pointer to YUV plane buffer
60 M4VIFI_ImagePlane *pPlaneIn,
86 u32_check_size = IS_EVEN(pPlaneIn[0].u_height);
91 u32_check_size = IS_EVEN(pPlaneIn[0].u_width);
118 pu8_data_in[u32_plane] = pPlaneIn[u32_plane].pac_data + pPlaneIn[u32_plane].u_topleft;
121 u32_stride_in[u32_plane] = pPlaneIn[u32_plane].u_stride;
124 u32_width_in[u32_plane] = pPlaneIn[u32_plane].u_width;
125 u32_height_in[u32_plane] = pPlaneIn[u32_plan
59 M4VIFI_ResizeBilinearYUV420toBGR565(void* pContext, M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut) argument
[all...]
H A DM4VIFI_ResizeYUVtoRGB565.c37 * M4VIFI_ImagePlane *pPlaneIn,
54 * @param pPlaneIn: (IN) Pointer to YUV plane buffer
63 M4VIFI_ImagePlane *pPlaneIn,
89 u32_check_size = IS_EVEN(pPlaneIn[0].u_height);
94 u32_check_size = IS_EVEN(pPlaneIn[0].u_width);
122 pu8_data_in[u32_plane] = pPlaneIn[u32_plane].pac_data + pPlaneIn[u32_plane].u_topleft;
125 u32_stride_in[u32_plane] = pPlaneIn[u32_plane].u_stride;
128 u32_width_in[u32_plane] = pPlaneIn[u32_plane].u_width;
129 u32_height_in[u32_plane] = pPlaneIn[u32_plan
62 M4VIFI_ResizeBilinearYUV420toRGB565(void* pContext, M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut) argument
[all...]
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorTools.h81 M4OSA_ERR M4VSS3GPP_externalVideoEffectFifties( M4OSA_Void *pUserData, M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut, M4VSS3GPP_ExternalProgress *pProgress, M4OSA_UInt32 uiEffectKind );
86 M4VIFI_UInt8 M4VIFI_xVSS_RGB565toYUV420(void *pUserData, M4VIFI_ImagePlane *pPlaneIn,
96 M4OSA_ERR applyRenderingMode(M4VIFI_ImagePlane* pPlaneIn, M4VIFI_ImagePlane* pPlaneOut, M4xVSS_MediaRendering mediaRendering);
101 M4VIFI_ImagePlane *pPlaneIn,
143 M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut);
146 M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut);
149 M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut);
H A DVideoEditorTools.cpp728 * @param pPlaneIn (IN) Input YUV420 planar
738 M4OSA_Void *pUserData, M4VIFI_ImagePlane *pPlaneIn,
743 M4VIFI_UInt8 *pInY = pPlaneIn[0].pac_data;
752 pInY += pPlaneIn[0].u_topleft;
760 M4OSA_rand((M4OSA_Int32*)&(p_FiftiesData->shiftRandomValue), (pPlaneIn[0].u_height) >> 4);
761 M4OSA_rand((M4OSA_Int32*)&(p_FiftiesData->stripeRandomValue), (pPlaneIn[0].u_width)<< 2);
768 M4OSA_rand((M4OSA_Int32*)&(p_FiftiesData->shiftRandomValue), (pPlaneIn[0].u_height) >> 4);
769 M4OSA_rand((M4OSA_Int32*)&(p_FiftiesData->stripeRandomValue), (pPlaneIn[0].u_width)<< 2);
776 pInCr = pPlaneIn[plane_number].pac_data + pPlaneIn[plane_numbe
737 M4VSS3GPP_externalVideoEffectFifties( M4OSA_Void *pUserData, M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut, M4VSS3GPP_ExternalProgress *pProgress, M4OSA_UInt32 uiEffectKind ) argument
1082 M4VIFI_xVSS_RGB565toYUV420(void *pUserData, M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut) argument
1441 M4VIFI_ResizeBilinearYUV420toYUV420(void *pUserData, M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut) argument
1666 applyRenderingMode(M4VIFI_ImagePlane* pPlaneIn, M4VIFI_ImagePlane* pPlaneOut, M4xVSS_MediaRendering mediaRendering) argument
3676 M4VIFI_Rotate90LeftYUV420toYUV420(void* pUserData, M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut) argument
3713 M4VIFI_Rotate90RightYUV420toYUV420(void* pUserData, M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut) argument
3750 M4VIFI_Rotate180YUV420toYUV420(void* pUserData, M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut) argument
[all...]
/frameworks/av/libvideoeditor/vss/src/
H A DM4VIFI_xVSS_RGB565toYUV420.c36 * M4VIFI_ImagePlane *pPlaneIn,
47 * @param pPlaneIn: (IN) Pointer to RGB565 Plane
54 M4VIFI_UInt8 M4VIFI_xVSS_RGB565toYUV420(void *pUserData, M4VIFI_ImagePlane *pPlaneIn, argument
75 if( (pPlaneIn->u_height != pPlaneOut[0].u_height) ||
83 if( (pPlaneIn->u_width != pPlaneOut[0].u_width) ||
96 pu8_rgbn_data = pPlaneIn->pac_data + pPlaneIn->u_topleft;
109 u32_stride_rgb = pPlaneIn->u_stride;
H A DM4PTO3GPP_VideoPreProcessing.c46 * M4OSA_ERR M4PTO3GPP_applyVPP(M4VPP_Context pContext, M4VIFI_ImagePlane* pPlaneIn,
52 * @param pPlaneIn (IN) Contains the image
60 M4OSA_ERR M4PTO3GPP_applyVPP(M4VPP_Context pContext, M4VIFI_ImagePlane* pPlaneIn, argument
69 /* It's OK to get pPlaneIn == M4OSA_NULL here */
H A DM4VSS3GPP_EditVideo.c70 M4VSS3GPP_InternalEditContext *pC, M4VIFI_ImagePlane *pPlaneIn,
110 static M4OSA_ERR M4VSS3GPP_intRotateVideo(M4VIFI_ImagePlane* pPlaneIn,
118 M4VIFI_ImagePlane *pPlaneIn,
1056 * @param pPlaneIn (IN)
1062 M4OSA_ERR M4VSS3GPP_intVPP( M4VPP_Context pContext, M4VIFI_ImagePlane *pPlaneIn, argument
1677 * @brief Apply video overlay from pPlaneIn to pPlaneOut
1686 M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut) {
1753 pPlaneIn, pPlaneOut, &extProgress,
1773 * @brief Apply video effect from pPlaneIn to pPlaneOut
1784 M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlan
1685 M4VSS3GPP_intApplyVideoOverlay(M4VSS3GPP_InternalEditContext *pC, M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut) argument
1783 M4VSS3GPP_intApplyVideoEffect(M4VSS3GPP_InternalEditContext *pC, M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut, M4OSA_Bool bSkipFramingEffect) argument
3827 M4VSS3GPP_intRotateVideo(M4VIFI_ImagePlane* pPlaneIn, M4OSA_UInt32 rotationDegree) argument
[all...]
H A DM4xVSS_internal.c53 M4VIFI_UInt8 M4VIFI_xVSS_RGB565toYUV420(void *pUserData, M4VIFI_ImagePlane *pPlaneIn,
4003 * @param pPlaneIn (IN) Input YUV420 planar
4013 M4VIFI_ImagePlane *pPlaneIn,
4019 M4VIFI_UInt8 *pInY = pPlaneIn[0].pac_data;
4036 pInY += pPlaneIn[0].u_topleft;
4044 M4OSA_rand((M4OSA_Int32 *)&(p_FiftiesData->shiftRandomValue), (pPlaneIn[0].u_height) >> 4);
4045 M4OSA_rand((M4OSA_Int32 *)&(p_FiftiesData->stripeRandomValue), (pPlaneIn[0].u_width)<< 2);
4053 M4OSA_rand((M4OSA_Int32 *)&(p_FiftiesData->shiftRandomValue), (pPlaneIn[0].u_height) >> 4);
4054 M4OSA_rand((M4OSA_Int32 *)&(p_FiftiesData->stripeRandomValue), (pPlaneIn[0].u_width)<< 2);
4061 pInCr = pPlaneIn[plane_numbe
4012 M4VSS3GPP_externalVideoEffectFifties( M4OSA_Void *pUserData, M4VIFI_ImagePlane *pPlaneIn, M4VIFI_ImagePlane *pPlaneOut, M4VSS3GPP_ExternalProgress *pProgress, M4OSA_UInt32 uiEffectKind ) argument
[all...]
/frameworks/av/libvideoeditor/vss/inc/
H A DM4PTO3GPP_InternalTypes.h201 * M4OSA_ERR M4PTO3GPP_applyVPP(M4VPP_Context pContext, M4VIFI_ImagePlane* pPlaneIn,
207 * @param pPlaneIn (IN) Contains the image
214 M4OSA_ERR M4PTO3GPP_applyVPP(M4VPP_Context pContext, M4VIFI_ImagePlane* pPlaneIn,
H A DM4VSS3GPP_InternalFunctions.h637 * @param pPlaneIn (IN)
643 M4OSA_ERR M4VSS3GPP_intVPP(M4VPP_Context pContext, M4VIFI_ImagePlane* pPlaneIn,
/frameworks/av/libvideoeditor/vss/mcs/inc/
H A DM4MCS_InternalFunctions.h37 * M4VIFI_ImagePlane* pPlaneIn,
43 * @param pPlaneIn (IN) Contains the image
52 M4OSA_ERR M4MCS_intApplyVPP(M4VPP_Context pContext, M4VIFI_ImagePlane* pPlaneIn,
/frameworks/av/libvideoeditor/vss/mcs/src/
H A DM4MCS_VideoPreProcessing.c56 * M4OSA_ERR M4MCS_intApplyVPP(M4VPP_Context pContext, M4VIFI_ImagePlane* pPlaneIn,
61 * @param pPlaneIn (IN) Contains the image
70 M4OSA_ERR M4MCS_intApplyVPP(M4VPP_Context pContext, M4VIFI_ImagePlane* pPlaneIn, argument

Completed in 3122 milliseconds