Searched refs:pSadCostCache (Results 1 – 2 of 2) sorted by relevance
/third_party/openh264/codec/encoder/core/src/ |
D | md.cpp | 826 void PredictSad (int8_t* pRefIndexCache, int32_t* pSadCostCache, int32_t uiRef, int32_t* pSadPred) { in PredictSad() argument 830 const int32_t kiSadB = pSadCostCache[1]; in PredictSad() 831 int32_t iSadC = pSadCostCache[2]; in PredictSad() 832 const int32_t kiSadA = pSadCostCache[3]; in PredictSad() 838 iSadC = pSadCostCache[0]; in PredictSad() 870 void PredictSadSkip (int8_t* pRefIndexCache, bool* pMbSkipCache, int32_t* pSadCostCache, int32_t ui… in PredictSadSkip() argument 875 const int32_t kiSadB = (pMbSkipCache[1] == 1 ? pSadCostCache[1] : 0); in PredictSadSkip() 876 int32_t iSadC = (pMbSkipCache[2] == 1 ? pSadCostCache[2] : 0); in PredictSadSkip() 877 const int32_t kiSadA = (pMbSkipCache[3] == 1 ? pSadCostCache[3] : 0); in PredictSadSkip() 884 iSadC = (pMbSkipCache[0] == 1 ? pSadCostCache[0] : 0); in PredictSadSkip()
|
/third_party/openh264/codec/encoder/core/inc/ |
D | md.h | 139 void PredictSad (int8_t* pRefIndexCache, int32_t* pSadCostCache, int32_t uiRef, int32_t* pSadPred); 142 void PredictSadSkip (int8_t* pRefIndexCache, bool* pMbSkipCache, int32_t* pSadCostCache, int32_t ui…
|