Home
last modified time | relevance | path

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

/third_party/openh264/codec/decoder/core/src/
Dmv_pred.cpp211 iLeftType = ((iCurX != 0 && bLeftAvail) ? GetMbType (pCurDqLayer)[iLeftXy] : 0); in PredPSkipMvFromNeighbor()
212 iTopType = ((iCurY != 0 && bTopAvail) ? GetMbType (pCurDqLayer)[iTopXy] : 0); in PredPSkipMvFromNeighbor()
214 ? GetMbType (pCurDqLayer)[iLeftTopXy] : 0); in PredPSkipMvFromNeighbor()
216 ? GetMbType (pCurDqLayer)[iRightTopXy] : 0); in PredPSkipMvFromNeighbor()
314 uint32_t is8x8 = IS_Inter_8x8 (GetMbType (pCurDqLayer)[iMbXy]); in GetColocatedMb()
315 mbType = GetMbType (pCurDqLayer)[iMbXy]; in GetColocatedMb()
398 …bool bSkipOrDirect = (IS_SKIP (GetMbType (pCurDqLayer)[iMbXy]) || IS_DIRECT (GetMbType (pCurDqLaye… in PredMvBDirectSpatial()
457 iLeftType = ((iCurX != 0 && bLeftAvail) ? GetMbType (pCurDqLayer)[iLeftXy] : 0); in PredMvBDirectSpatial()
458 iTopType = ((iCurY != 0 && bTopAvail) ? GetMbType (pCurDqLayer)[iTopXy] : 0); in PredMvBDirectSpatial()
460 ? GetMbType (pCurDqLayer)[iLeftTopXy] : 0); in PredMvBDirectSpatial()
[all …]
/third_party/openh264/codec/decoder/core/inc/
Dmv_pred.h185 inline uint32_t* GetMbType (PDqLayer& pCurDqLayer) { in GetMbType() function