Home | History | Annotate | Download | only in lvpp

Lines Matching refs:pImagePlanesTemp

1685         M4VIFI_ImagePlane pImagePlanesTemp[3];
1714 pImagePlanesTemp[0].u_width = pPlaneOut[0].u_width;
1715 pImagePlanesTemp[0].u_height = pPlaneOut[0].u_height;
1716 pImagePlanesTemp[0].u_stride = pPlaneOut[0].u_width;
1717 pImagePlanesTemp[0].u_topleft = 0;
1718 pImagePlanesTemp[0].pac_data = M4OSA_NULL;
1720 pImagePlanesTemp[1].u_width = pPlaneOut[1].u_width;
1721 pImagePlanesTemp[1].u_height = pPlaneOut[1].u_height;
1722 pImagePlanesTemp[1].u_stride = pPlaneOut[1].u_width;
1723 pImagePlanesTemp[1].u_topleft = 0;
1724 pImagePlanesTemp[1].pac_data = M4OSA_NULL;
1726 pImagePlanesTemp[2].u_width = pPlaneOut[2].u_width;
1727 pImagePlanesTemp[2].u_height = pPlaneOut[2].u_height;
1728 pImagePlanesTemp[2].u_stride = pPlaneOut[2].u_width;
1729 pImagePlanesTemp[2].u_topleft = 0;
1730 pImagePlanesTemp[2].pac_data = M4OSA_NULL;
1733 pImagePlanesTemp[0].pac_data = (M4OSA_UInt8*)M4OSA_32bitAlignedMalloc(pImagePlanesTemp[0].u_width * pImagePlanesTemp[0].u_height, M4VS, (M4OSA_Char*)"applyRenderingMode: temporary plane bufferY") ;
1734 if(pImagePlanesTemp[0].pac_data == M4OSA_NULL)
1739 pImagePlanesTemp[1].pac_data = (M4OSA_UInt8*)M4OSA_32bitAlignedMalloc(pImagePlanesTemp[1].u_width * pImagePlanesTemp[1].u_height, M4VS, (M4OSA_Char*)"applyRenderingMode: temporary plane bufferU") ;
1740 if(pImagePlanesTemp[1].pac_data == M4OSA_NULL)
1746 pImagePlanesTemp[2].pac_data = (M4OSA_UInt8*)M4OSA_32bitAlignedMalloc(pImagePlanesTemp[2].u_width * pImagePlanesTemp[2].u_height, M4VS, (M4OSA_Char*)"applyRenderingMode: temporary plane bufferV") ;
1747 if(pImagePlanesTemp[2].pac_data == M4OSA_NULL)
1754 pInPlaneY = pImagePlanesTemp[0].pac_data ;
1755 pInPlaneU = pImagePlanesTemp[1].pac_data ;
1756 pInPlaneV = pImagePlanesTemp[2].pac_data ;
1758 memset((void *)pImagePlanesTemp[0].pac_data,Y_PLANE_BORDER_VALUE,(pImagePlanesTemp[0].u_height*pImagePlanesTemp[0].u_stride));
1759 memset((void *)pImagePlanesTemp[1].pac_data,U_PLANE_BORDER_VALUE,(pImagePlanesTemp[1].u_height*pImagePlanesTemp[1].u_stride));
1760 memset((void *)pImagePlanesTemp[2].pac_data,V_PLANE_BORDER_VALUE,(pImagePlanesTemp[2].u_height*pImagePlanesTemp[2].u_stride));
1768 pImagePlanesTemp[0].u_topleft = (M4xVSS_ABS((M4OSA_Int32)(pImagePlanesTemp[0].u_height-Params.m_outputSize.m_height)>>1))*pImagePlanesTemp[0].u_stride;
1769 pImagePlanesTemp[0].u_height = Params.m_outputSize.m_height;
1770 pImagePlanesTemp[1].u_topleft = (M4xVSS_ABS((M4OSA_Int32)(pImagePlanesTemp[1].u_height-(Params.m_outputSize.m_height>>1)))>>1)*pImagePlanesTemp[1].u_stride;
1771 pImagePlanesTemp[1].u_height = Params.m_outputSize.m_height>>1;
1772 pImagePlanesTemp[2].u_topleft = (M4xVSS_ABS((M4OSA_Int32)(pImagePlanesTemp[2].u_height-(Params.m_outputSize.m_height>>1)))>>1)*pImagePlanesTemp[2].u_stride;
1773 pImagePlanesTemp[2].u_height = Params.m_outputSize.m_height>>1;
1781 pImagePlanesTemp[0].u_topleft = (M4xVSS_ABS((M4OSA_Int32)(pImagePlanesTemp[0].u_width-Params.m_outputSize.m_width)>>1));
1782 pImagePlanesTemp[0].u_width = Params.m_outputSize.m_width;
1783 pImagePlanesTemp[1].u_topleft = (M4xVSS_ABS((M4OSA_Int32)(pImagePlanesTemp[1].u_width-(Params.m_outputSize.m_width>>1)))>>1);
1784 pImagePlanesTemp[1].u_width = Params.m_outputSize.m_width>>1;
1785 pImagePlanesTemp[2].u_topleft = (M4xVSS_ABS((M4OSA_Int32)(pImagePlanesTemp[2].u_width-(Params.m_outputSize.m_width>>1)))>>1);
1786 pImagePlanesTemp[2].u_width = Params.m_outputSize.m_width>>1;
1794 pImagePlanesTemp[0].u_width = (pImagePlanesTemp[0].u_width>>1)<<1;
1795 pImagePlanesTemp[1].u_width = (pImagePlanesTemp[1].u_width>>1)<<1;
1796 pImagePlanesTemp[2].u_width = (pImagePlanesTemp[2].u_width>>1)<<1;
1797 pImagePlanesTemp[0].u_height = (pImagePlanesTemp[0].u_height>>1)<<1;
1798 pImagePlanesTemp[1].u_height = (pImagePlanesTemp[1].u_height>>1)<<1;
1799 pImagePlanesTemp[2].u_height = (pImagePlanesTemp[2].u_height>>1)<<1;
1810 pPlaneTemp = pImagePlanesTemp;
1847 if(pImagePlanesTemp[i].pac_data != M4OSA_NULL)
1849 free(pImagePlanesTemp[i].pac_data);
1850 pImagePlanesTemp[i].pac_data = M4OSA_NULL;
1865 if(pImagePlanesTemp[i].pac_data != M4OSA_NULL)
1867 free(pImagePlanesTemp[i].pac_data);
1868 pImagePlanesTemp[i].pac_data = M4OSA_NULL;
1881 if(pImagePlanesTemp[i].pac_data != M4OSA_NULL)
1883 free(pImagePlanesTemp[i].pac_data);
1884 pImagePlanesTemp[i].pac_data = M4OSA_NULL;
1913 if(pImagePlanesTemp[i].pac_data != M4OSA_NULL)
1915 free(pImagePlanesTemp[i].pac_data);
1916 pImagePlanesTemp[i].pac_data = M4OSA_NULL;