Home
last modified time | relevance | path

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

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
Dh264bsd_neighbour.c127 void h264bsdInitMbNeighbours(mbStorage_t *pMbStorage, u32 picWidth, in h264bsdInitMbNeighbours() argument
137 ASSERT(pMbStorage); in h264bsdInitMbNeighbours()
148 pMbStorage[i].mbA = pMbStorage + i - 1; in h264bsdInitMbNeighbours()
150 pMbStorage[i].mbA = NULL; in h264bsdInitMbNeighbours()
153 pMbStorage[i].mbB = pMbStorage + i - picWidth; in h264bsdInitMbNeighbours()
155 pMbStorage[i].mbB = NULL; in h264bsdInitMbNeighbours()
158 pMbStorage[i].mbC = pMbStorage + i - (picWidth - 1); in h264bsdInitMbNeighbours()
160 pMbStorage[i].mbC = NULL; in h264bsdInitMbNeighbours()
163 pMbStorage[i].mbD = pMbStorage + i - (picWidth + 1); in h264bsdInitMbNeighbours()
165 pMbStorage[i].mbD = NULL; in h264bsdInitMbNeighbours()
Dh264bsd_neighbour.h65 void h264bsdInitMbNeighbours(mbStorage_t *pMbStorage, u32 picWidth,