| 140 | |
| 141 | |
| 142 | void WelsInitBGDFunc (SWelsFuncPtrList* pFuncList, const bool kbEnableBackgroundDetection) { |
| 143 | if (kbEnableBackgroundDetection) { |
| 144 | pFuncList->pfInterMdBackgroundDecision = WelsMdInterJudgeBGDPskip; |
| 145 | pFuncList->pfMdBackgroundInfoUpdate = WelsMdUpdateBGDInfo; |
| 146 | } else { |
| 147 | pFuncList->pfInterMdBackgroundDecision = WelsMdInterJudgeBGDPskipFalse; |
| 148 | pFuncList->pfMdBackgroundInfoUpdate = WelsMdUpdateBGDInfoNULL; |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | /*! |
| 153 | * \brief initialize function pointers that potentially used in Wels encoding |
no outgoing calls
no test coverage detected