Home
last modified time | relevance | path

Searched refs:mbB (Results 1 – 6 of 6) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
Dh264bsd_neighbour.c153 pMbStorage[i].mbB = pMbStorage + i - picWidth; in h264bsdInitMbNeighbours()
155 pMbStorage[i].mbB = NULL; in h264bsdInitMbNeighbours()
211 return(pMb->mbB); in h264bsdGetNeighbourMb()
Dh264bsd_deblocking.c268 ASSERT(mb && mb->mbB); in IsSliceBoundaryOnTop()
270 if (mb->sliceId != mb->mbB->sliceId) in IsSliceBoundaryOnTop()
311 if (mb->mbB && in GetMbFilteringFlags()
1152 if (IS_INTRA_MB(*mb) || IS_INTRA_MB(*mb->mbB)) in GetBoundaryStrengths()
1159 bS[0].top = EdgeBoundaryStrength(mb, mb->mbB, 0, 10); in GetBoundaryStrengths()
1160 bS[1].top = EdgeBoundaryStrength(mb, mb->mbB, 1, 11); in GetBoundaryStrengths()
1161 bS[2].top = EdgeBoundaryStrength(mb, mb->mbB, 4, 14); in GetBoundaryStrengths()
1162 bS[3].top = EdgeBoundaryStrength(mb, mb->mbB, 5, 15); in GetBoundaryStrengths()
1408 qpTmp = mb->mbB->qpY; in GetLumaEdgeThresholds()
1489 qpTmp = mb->mbB->qpY; in GetChromaEdgeThresholds()
[all …]
Dh264bsd_inter_prediction.c510 GetInterNeighbour(pMb->sliceId, pMb->mbB, a+1, 10); in MvPrediction16x16()
593 GetInterNeighbour(pMb->sliceId, pMb->mbB, a+1, 10); in MvPrediction16x8()
706 GetInterNeighbour(pMb->sliceId, pMb->mbB, a+1, 10); in MvPrediction8x16()
707 GetInterNeighbour(pMb->sliceId, pMb->mbB, a+2, 14); in MvPrediction8x16()
744 GetInterNeighbour(pMb->sliceId, pMb->mbB, a+2, 11); in MvPrediction8x16()
754 GetInterNeighbour(pMb->sliceId, pMb->mbB, a+1, 14); in MvPrediction8x16()
Dh264bsd_intra_prediction.c225 availableB = h264bsdIsNeighbourAvailable(pMb, pMb->mbB); in h264bsdIntra16x16Prediction()
227 (h264bsdMbPartPredMode(pMb->mbB->mbType) == PRED_MODE_INTER)) in h264bsdIntra16x16Prediction()
393 availableB = h264bsdIsNeighbourAvailable(pMb, pMb->mbB); in h264bsdIntraChromaPrediction()
395 (h264bsdMbPartPredMode(pMb->mbB->mbType) == PRED_MODE_INTER)) in h264bsdIntraChromaPrediction()
643 availableB = h264bsdIsNeighbourAvailable(pMb, pMb->mbB); in h264bsdIntra16x16Prediction()
645 (h264bsdMbPartPredMode(pMb->mbB->mbType) == PRED_MODE_INTER)) in h264bsdIntra16x16Prediction()
861 availableB = h264bsdIsNeighbourAvailable(pMb, pMb->mbB); in h264bsdIntraChromaPrediction()
863 (h264bsdMbPartPredMode(pMb->mbB->mbType) == PRED_MODE_INTER)) in h264bsdIntraChromaPrediction()
Dh264bsd_macroblock_layer.c838 if (h264bsdIsNeighbourAvailable(pMb, pMb->mbB)) in DetermineNc()
840 n = (n + pMb->mbB->totalCoeff[neighbourBindex] + 1) >> 1; in DetermineNc()
859 if (h264bsdIsNeighbourAvailable(pMb, pMb->mbB)) in DetermineNc()
862 n = (n + pMb->mbB->totalCoeff[neighbourBindex] + 1) >> 1; in DetermineNc()
864 n = pMb->mbB->totalCoeff[neighbourBindex]; in DetermineNc()
Dh264bsd_macroblock_layer.h181 struct mbStorage *mbB; member