Home
last modified time | relevance | path

Searched refs:pCurOU (Results 1 – 2 of 2) sorted by relevance

/third_party/openh264/codec/processing/src/backgrounddetection/
DBackgroundDetection.cpp318 inline void CBackgroundDetection::UpperOUForegroundCheck (SBackgroundOU* pCurOU, int8_t* pBackgroun… in UpperOUForegroundCheck() argument
320 if (pCurOU->iSAD > BGD_OU_SIZE * Q_FACTOR) { in UpperOUForegroundCheck()
321 SBackgroundOU* pOU_L = pCurOU - 1; in UpperOUForegroundCheck()
322 SBackgroundOU* pOU_R = pCurOU + 1; in UpperOUForegroundCheck()
323 SBackgroundOU* pOU_U = pCurOU - iPicWidthInOU; in UpperOUForegroundCheck()
324 SBackgroundOU* pOU_D = pCurOU + iPicWidthInOU; in UpperOUForegroundCheck()
327 pCurOU->iBackgroundFlag = 0; in UpperOUForegroundCheck()
DBackgroundDetection.h93 …inline void UpperOUForegroundCheck (SBackgroundOU* pCurOU, int8_t* pBackgroundMbFlag, int32_t …