Lines Matching refs:m_BgdParam
55 WelsMemset (&m_BgdParam, 0, sizeof (m_BgdParam)); in CBackgroundDetection()
60 WelsFree (m_BgdParam.pOU_array); in ~CBackgroundDetection()
69 m_BgdParam.pCur[0] = (uint8_t*)pSrcPixMap->pPixel[0]; in Process()
70 m_BgdParam.pCur[1] = (uint8_t*)pSrcPixMap->pPixel[1]; in Process()
71 m_BgdParam.pCur[2] = (uint8_t*)pSrcPixMap->pPixel[2]; in Process()
72 m_BgdParam.pRef[0] = (uint8_t*)pRefPixMap->pPixel[0]; in Process()
73 m_BgdParam.pRef[1] = (uint8_t*)pRefPixMap->pPixel[1]; in Process()
74 m_BgdParam.pRef[2] = (uint8_t*)pRefPixMap->pPixel[2]; in Process()
75 m_BgdParam.iBgdWidth = pSrcPixMap->sRect.iRectWidth; in Process()
76 m_BgdParam.iBgdHeight = pSrcPixMap->sRect.iRectHeight; in Process()
77 m_BgdParam.iStride[0] = pSrcPixMap->iStride[0]; in Process()
78 m_BgdParam.iStride[1] = pSrcPixMap->iStride[1]; in Process()
79 m_BgdParam.iStride[2] = pSrcPixMap->iStride[2]; in Process()
81 int32_t iCurFrameSize = m_BgdParam.iBgdWidth * m_BgdParam.iBgdHeight; in Process()
82 if (m_BgdParam.pOU_array == NULL || iCurFrameSize > m_iLargestFrameSize) { in Process()
83 WelsFree (m_BgdParam.pOU_array); in Process()
84 m_BgdParam.pOU_array = AllocateOUArrayMemory (m_BgdParam.iBgdWidth, m_BgdParam.iBgdHeight); in Process()
88 if (m_BgdParam.pOU_array == NULL) in Process()
91 BackgroundDetection (&m_BgdParam); in Process()
103 m_BgdParam.pBackgroundMbFlag = (int8_t*)pInterface->pBackgroundMbFlag; in Set()
104 m_BgdParam.pCalcRes = pInterface->pCalcRes; in Set()