Lines Matching defs:pPlaneOut

57  *                               M4VIFI_ImagePlane* pPlaneOut)
62 * @param pPlaneOut (IN/OUT) Pointer to an array of 3 planes that will contain the output
71 M4VIFI_ImagePlane* pPlaneOut)
93 memset((void *)pPlaneOut[0].pac_data,Y_PLANE_BORDER_VALUE,
94 (pPlaneOut[0].u_height*pPlaneOut[0].u_stride));
95 memset((void *)pPlaneOut[1].pac_data,U_PLANE_BORDER_VALUE,
96 (pPlaneOut[1].u_height*pPlaneOut[1].u_stride));
97 memset((void *)pPlaneOut[2].pac_data,V_PLANE_BORDER_VALUE,
98 (pPlaneOut[2].u_height*pPlaneOut[2].u_stride));
106 memset((void *)pPlaneOut[0].pac_data,0,
107 pPlaneOut[0].u_stride * pPlaneOut[0].u_height);
108 memset((void *)pPlaneOut[1].pac_data,0,
109 pPlaneOut[1].u_stride * pPlaneOut[1].u_height);
110 memset((void *)pPlaneOut[2].pac_data,0,
111 pPlaneOut[2].u_stride * pPlaneOut[2].u_height);
144 pC->pPreResizeFrame, pPlaneOut);
156 M4OSA_UInt8* pOutPlaneY = pPlaneOut[0].pac_data +
157 pPlaneOut[0].u_topleft;
158 M4OSA_UInt8* pOutPlaneU = pPlaneOut[1].pac_data +
159 pPlaneOut[1].u_topleft;
160 M4OSA_UInt8* pOutPlaneV = pPlaneOut[2].pac_data +
161 pPlaneOut[2].u_topleft;
173 Params.m_outputSize.m_width = pPlaneOut->u_width;
174 Params.m_outputSize.m_height = pPlaneOut->u_height;
182 pImagePlanesTemp[0].u_width = pPlaneOut[0].u_width;
183 pImagePlanesTemp[0].u_height = pPlaneOut[0].u_height;
184 pImagePlanesTemp[0].u_stride = pPlaneOut[0].u_width;
187 pImagePlanesTemp[1].u_width = pPlaneOut[1].u_width;
188 pImagePlanesTemp[1].u_height = pPlaneOut[1].u_height;
189 pImagePlanesTemp[1].u_stride = pPlaneOut[1].u_width;
192 pImagePlanesTemp[2].u_width = pPlaneOut[2].u_width;
193 pImagePlanesTemp[2].u_height = pPlaneOut[2].u_height;
194 pImagePlanesTemp[2].u_stride = pPlaneOut[2].u_width;
237 if((M4OSA_UInt32)((pC->pPreResizeFrame->u_height * pPlaneOut->u_width)\
238 /pC->pPreResizeFrame->u_width) <= pPlaneOut->u_height)
242 Params.m_outputSize.m_width = pPlaneOut->u_width;
245 ((pC->pPreResizeFrame->u_height * pPlaneOut->u_width)\
268 Params.m_outputSize.m_height = pPlaneOut->u_height;
271 * pPlaneOut->u_height)\
316 Params.m_outputSize.m_height = pPlaneOut->u_height;
317 Params.m_outputSize.m_width = pPlaneOut->u_width;
347 pPlaneTemp = pPlaneOut;
383 for(i=0; i<pPlaneOut[0].u_height; i++)
387 pPlaneOut[0].u_width);
388 pInPlaneY += pPlaneOut[0].u_width;
389 pOutPlaneY += pPlaneOut[0].u_stride;
391 for(i=0; i<pPlaneOut[1].u_height; i++)
395 pPlaneOut[1].u_width);
396 pInPlaneU += pPlaneOut[1].u_width;
397 pOutPlaneU += pPlaneOut[1].u_stride;
399 for(i=0; i<pPlaneOut[2].u_height; i++)
403 pPlaneOut[2].u_width);
404 pInPlaneV += pPlaneOut[2].u_width;
405 pOutPlaneV += pPlaneOut[2].u_stride;
424 &mtCts, pPlaneOut,
432 pC->lastDecodedPlane = pPlaneOut;
437 memcpy((void *)pPlaneOut[0].pac_data,
439 (pPlaneOut[0].u_height * pPlaneOut[0].u_width));
440 memcpy((void *)pPlaneOut[1].pac_data,
442 (pPlaneOut[1].u_height * pPlaneOut[1].u_width));
443 memcpy((void *)pPlaneOut[2].pac_data,
445 (pPlaneOut[2].u_height * pPlaneOut[2].u_width));
446 pC->lastDecodedPlane = pPlaneOut;