Lines Matching refs:bScalerWin
300 void msAdjustPCContrast_10Bits(void* pInstance, BOOL bScalerWin, WORD wContrast );
301 void msAdjustVideoContrast_10Bits(void* pInstance, BOOL bScalerWin, WORD wContrast );
1502 void msSetVideoColorMatrix(void *pInstance, BOOL bScalerWin ) in msSetVideoColorMatrix() argument
1529 ColorMatrix_1[i][j]=*(s_AceInfo[bScalerWin].psYVUtoRGBMatrix +(i*3)+j);; in msSetVideoColorMatrix()
1530 ColorMatrix_2[i][j]= s_AceInfo[bScalerWin].sVideoSatHueMatrix[i][j]; in msSetVideoColorMatrix()
1539 …if(( NULL != s_AceInfo[bScalerWin].psColorCorrectionMatrix )&&(DISABLE==g_ACEinitParameters.bHDREn… in msSetVideoColorMatrix()
1546 ColorMatrix_1[i][j]=*(s_AceInfo[bScalerWin].psColorCorrectionMatrix +(i*3)+j); in msSetVideoColorMatrix()
1553 ArrayMultiply( s_AceInfo[bScalerWin].sContrastRGBMatrix, sResultTmp2, sResultTmp1 ); in msSetVideoColorMatrix()
1560 ArrayMultiply( s_AceInfo[bScalerWin].sContrastRGBMatrix, sResultTmp1, sResultTmp2 ); in msSetVideoColorMatrix()
1563 if (MDrv_ACE_IsSupportMLoad(pInstance) && (!MDrv_ACE_GetSkipWaitVsync(pInstance, bScalerWin))) in msSetVideoColorMatrix()
1565 MDrv_ACE_WriteColorMatrixBurst(pInstance, bScalerWin, (MS_U16*)psLastResult ); in msSetVideoColorMatrix()
1569 msWriteColorMatrix(pInstance, bScalerWin, psLastResult ); in msSetVideoColorMatrix()
1574 if( bScalerWin == MAIN_WINDOW ) in msSetVideoColorMatrix()
1591 void msAdjustHSC(void *pInstance, BOOL bScalerWin, BYTE ucHue, BYTE ucSaturation, BYTE ucContrast) in msAdjustHSC() argument
1595 s_AceInfo[bScalerWin].ucSaturation = ucSaturation; in msAdjustHSC()
1596 s_AceInfo[bScalerWin].wContrast = (WORD)ucContrast<<3; in msAdjustHSC()
1597 s_AceInfo[bScalerWin].ucHue = ucHue; in msAdjustHSC()
1598 SetVideoSatHueMatrix(pInstance, bScalerWin ); in msAdjustHSC()
1599 SetVideoContrastMatrix(pInstance, bScalerWin ); in msAdjustHSC()
1601 msSetVideoColorMatrix(pInstance, bScalerWin ); in msAdjustHSC()
1604 MS_BOOL msAdjustCFDOSDInfo(void *pInstance, BOOL bScalerWin) in msAdjustCFDOSDInfo() argument
1619 stAceOSDControl.u16Contrast = s_AceInfo[bScalerWin].wContrast; in msAdjustCFDOSDInfo()
1621 stAceOSDControl.u16Hue = s_AceInfo[bScalerWin].ucHue; in msAdjustCFDOSDInfo()
1623 stAceOSDControl.u16Saturation = s_AceInfo[bScalerWin].ucSaturation; in msAdjustCFDOSDInfo()
1624 if(s_AceInfo[bScalerWin].psYVUtoRGBMatrix != NULL) in msAdjustCFDOSDInfo()
1627 …memcpy(stAceOSDControl.s16YVUtoRGBMatrix, s_AceInfo[bScalerWin].psYVUtoRGBMatrix, sizeof(short)*9); in msAdjustCFDOSDInfo()
1632 stAceOSDControl.u16R = s_AceInfo[bScalerWin].wRCon; in msAdjustCFDOSDInfo()
1633 stAceOSDControl.u16G = s_AceInfo[bScalerWin].wGCon; in msAdjustCFDOSDInfo()
1634 stAceOSDControl.u16B = s_AceInfo[bScalerWin].wBCon; in msAdjustCFDOSDInfo()
1637 stAceOSDControl.u8Win = (bScalerWin==TRUE)?1:0; in msAdjustCFDOSDInfo()
1675 stAceCfdFire.u8Win = bScalerWin; in msAdjustCFDOSDInfo()
1698 stAceCfdFire.u8Win = bScalerWin; in msAdjustCFDOSDInfo()
1711 void msAdjustVideoContrast(void *pInstance, BOOL bScalerWin, BYTE ucContrast ) in msAdjustVideoContrast() argument
1715 s_AceInfo[bScalerWin].wContrast = (WORD)ucContrast<<3; in msAdjustVideoContrast()
1716 SetVideoContrastMatrix(pInstance, bScalerWin ); in msAdjustVideoContrast()
1717 msSetVideoColorMatrix(pInstance, bScalerWin ); in msAdjustVideoContrast()
1719 void msAdjustVideoContrast_10Bits(void *pInstance, BOOL bScalerWin, WORD wContrast ) in msAdjustVideoContrast_10Bits() argument
1723 s_AceInfo[bScalerWin].wContrast = wContrast<<1; in msAdjustVideoContrast_10Bits()
1724 SetVideoContrastMatrix(pInstance, bScalerWin ); in msAdjustVideoContrast_10Bits()
1725 msSetVideoColorMatrix(pInstance, bScalerWin ); in msAdjustVideoContrast_10Bits()
1728 void msAdjustVideoSaturation(void *pInstance, BOOL bScalerWin, BYTE ucSaturation ) in msAdjustVideoSaturation() argument
1732 s_AceInfo[bScalerWin].ucSaturation = ucSaturation; in msAdjustVideoSaturation()
1733 SetVideoSatHueMatrix(pInstance, bScalerWin); in msAdjustVideoSaturation()
1734 msSetVideoColorMatrix(pInstance, bScalerWin); in msAdjustVideoSaturation()
1737 void msAdjustVideoHue(void *pInstance, BOOL bScalerWin, BYTE ucHue ) in msAdjustVideoHue() argument
1740 s_AceInfo[bScalerWin].ucHue = ucHue; in msAdjustVideoHue()
1741 SetVideoSatHueMatrix(pInstance, bScalerWin); in msAdjustVideoHue()
1742 msSetVideoColorMatrix(pInstance, bScalerWin); in msAdjustVideoHue()
1744 void msAdjustVideoRGB(void *pInstance, BOOL bScalerWin, BYTE ucRCon, BYTE ucGCon, BYTE ucBCon) in msAdjustVideoRGB() argument
1747 s_AceInfo[bScalerWin].wRCon = (WORD)ucRCon<<3; in msAdjustVideoRGB()
1748 s_AceInfo[bScalerWin].wGCon = (WORD)ucGCon<<3; in msAdjustVideoRGB()
1749 s_AceInfo[bScalerWin].wBCon = (WORD)ucBCon<<3; in msAdjustVideoRGB()
1750 SetVideoContrastMatrix(pInstance, bScalerWin); in msAdjustVideoRGB()
1751 msSetVideoColorMatrix(pInstance, bScalerWin); in msAdjustVideoRGB()
1753 void msAdjustVideoRGB_10Bits(void *pInstance, BOOL bScalerWin, WORD wRCon, WORD wGCon, WORD wBCon) in msAdjustVideoRGB_10Bits() argument
1756 s_AceInfo[bScalerWin].wRCon = wRCon<<1; in msAdjustVideoRGB_10Bits()
1757 s_AceInfo[bScalerWin].wGCon = wGCon<<1; in msAdjustVideoRGB_10Bits()
1758 s_AceInfo[bScalerWin].wBCon = wBCon<<1; in msAdjustVideoRGB_10Bits()
1759 SetVideoContrastMatrix(pInstance, bScalerWin ); in msAdjustVideoRGB_10Bits()
1760 msSetVideoColorMatrix(pInstance, bScalerWin ); in msAdjustVideoRGB_10Bits()
1771 void msSetPCColorMatrix(void *pInstance, BOOL bScalerWin ) in msSetPCColorMatrix() argument
1793 psOutTab = (short*)s_AceInfo[bScalerWin].sContrastRGBMatrix; in msSetPCColorMatrix()
1796 if( (s_AceInfo[bScalerWin].bForceYUVtoRGB) || (bScalerWin == SUB_WINDOW) ) in msSetPCColorMatrix()
1803 ColorMatrix_1[i][j]=*(s_AceInfo[bScalerWin].psYVUtoRGBMatrix +(i*3)+j);; in msSetPCColorMatrix()
1806 ArrayMultiply( s_AceInfo[bScalerWin].sContrastRGBMatrix, ColorMatrix_1, sResultTmp1 ); in msSetPCColorMatrix()
1820 if( s_AceInfo[bScalerWin].psPCsRGBMatrix != NULL ) in msSetPCColorMatrix()
1827 ColorMatrix_1[i][j]=*(s_AceInfo[bScalerWin].psPCsRGBMatrix +(i*3)+j);; in msSetPCColorMatrix()
1839 MDrv_ACE_WriteColorMatrixBurst(pInstance, bScalerWin, (MS_U16*)psOutTab ); in msSetPCColorMatrix()
1843 msWriteColorMatrix(pInstance, bScalerWin, psOutTab ); in msSetPCColorMatrix()
1848 if( bScalerWin == MAIN_WINDOW ) in msSetPCColorMatrix()
1863 void msAdjustPCContrast(void *pInstance, BOOL bScalerWin, BYTE ucContrast ) in msAdjustPCContrast() argument
1866 s_AceInfo[bScalerWin].wContrast = (WORD)ucContrast<<3; in msAdjustPCContrast()
1867 SetPCConRGBMatrix(pInstance, bScalerWin ); in msAdjustPCContrast()
1868 msSetPCColorMatrix(pInstance, bScalerWin ); in msAdjustPCContrast()
1870 void msAdjustPCContrast_10Bits(void *pInstance, BOOL bScalerWin, WORD wContrast ) in msAdjustPCContrast_10Bits() argument
1873 s_AceInfo[bScalerWin].wContrast = wContrast<<1; in msAdjustPCContrast_10Bits()
1874 SetPCConRGBMatrix(pInstance, bScalerWin ); in msAdjustPCContrast_10Bits()
1875 msSetPCColorMatrix(pInstance, bScalerWin ); in msAdjustPCContrast_10Bits()
1878 void msAdjustPCRGB(void *pInstance, BOOL bScalerWin, BYTE ucRed, BYTE ucGreen, BYTE ucBlue ) in msAdjustPCRGB() argument
1881 s_AceInfo[bScalerWin].wRCon = (WORD)ucRed<<3; in msAdjustPCRGB()
1882 s_AceInfo[bScalerWin].wGCon = (WORD)ucGreen<<3; in msAdjustPCRGB()
1883 s_AceInfo[bScalerWin].wBCon = (WORD)ucBlue<<3; in msAdjustPCRGB()
1884 SetPCConRGBMatrix(pInstance, bScalerWin ); in msAdjustPCRGB()
1885 msSetPCColorMatrix(pInstance, bScalerWin ); in msAdjustPCRGB()
1887 void msAdjustPCRGB_10Bits(void *pInstance, BOOL bScalerWin, WORD wRed, WORD wGreen, WORD wBlue ) in msAdjustPCRGB_10Bits() argument
1890 s_AceInfo[bScalerWin].wRCon = wRed<<1; in msAdjustPCRGB_10Bits()
1891 s_AceInfo[bScalerWin].wGCon = wGreen<<1; in msAdjustPCRGB_10Bits()
1892 s_AceInfo[bScalerWin].wBCon = wBlue<<1; in msAdjustPCRGB_10Bits()
1893 SetPCConRGBMatrix(pInstance, bScalerWin ); in msAdjustPCRGB_10Bits()
1894 msSetPCColorMatrix(pInstance, bScalerWin ); in msAdjustPCRGB_10Bits()
1900 void msACE_SetColorMatrixControl(void *pInstance, BOOL bScalerWin, BOOL bEnable ) in msACE_SetColorMatrixControl() argument
1913 if( bScalerWin == MAIN_WINDOW ) in msACE_SetColorMatrixControl()
1930 void msACE_SetRBChannelRange(void *pInstance, BOOL bScalerWin, BOOL bRange ) in msACE_SetRBChannelRange() argument
1944 if( bScalerWin == MAIN_WINDOW ) in msACE_SetRBChannelRange()