Home
last modified time | relevance | path

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

/third_party/openh264/codec/encoder/core/src/
Dmd.cpp870 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()
878 int32_t iRefSkip = pMbSkipCache[2]; in PredictSadSkip()
884 iSadC = (pMbSkipCache[0] == 1 ? pSadCostCache[0] : 0); in PredictSadSkip()
885 iRefSkip = pMbSkipCache[0]; in PredictSadSkip()
891 iCount = ((uiRef == kiRefA) && (pMbSkipCache[3] == 1)) << MB_LEFT_BIT; in PredictSadSkip()
892 iCount |= ((uiRef == kiRefB) && (pMbSkipCache[1] == 1)) << MB_TOP_BIT; in PredictSadSkip()
/third_party/openh264/codec/encoder/core/inc/
Dmd.h142 void PredictSadSkip (int8_t* pRefIndexCache, bool* pMbSkipCache, int32_t* pSadCostCache, int32_t ui…