Home
last modified time | relevance | path

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

/third_party/openh264/codec/decoder/core/src/
Dpic_queue.cpp184 int32_t iPicIdx = 0; in PrefetchPic() local
191 for (iPicIdx = pPicBuf->iCurrentIdx + 1; iPicIdx < pPicBuf->iCapacity ; ++iPicIdx) { in PrefetchPic()
192 if (pPicBuf->ppPic[iPicIdx] != NULL && !pPicBuf->ppPic[iPicIdx]->bUsedAsRef in PrefetchPic()
193 && pPicBuf->ppPic[iPicIdx]->iRefCount <= 0) { in PrefetchPic()
194 pPic = pPicBuf->ppPic[iPicIdx]; in PrefetchPic()
199 pPicBuf->iCurrentIdx = iPicIdx; in PrefetchPic()
200 pPic->iPicBuffIdx = iPicIdx; in PrefetchPic()
203 for (iPicIdx = 0 ; iPicIdx <= pPicBuf->iCurrentIdx ; ++iPicIdx) { in PrefetchPic()
204 if (pPicBuf->ppPic[iPicIdx] != NULL && !pPicBuf->ppPic[iPicIdx]->bUsedAsRef in PrefetchPic()
205 && pPicBuf->ppPic[iPicIdx]->iRefCount <= 0) { in PrefetchPic()
[all …]
Ddecoder.cpp67 int32_t iPicIdx = 0; in CreatePicBuff() local
88 for (iPicIdx = 0; iPicIdx < kiSize; ++ iPicIdx) { in CreatePicBuff()
92 pPicBuf->iCapacity = iPicIdx; in CreatePicBuff()
96 pPicBuf->ppPic[iPicIdx] = pPic; in CreatePicBuff()
111 int32_t iPicIdx = 0; in IncreasePicBuff() local
132 for (iPicIdx = kiOldSize; iPicIdx < kiNewSize; ++ iPicIdx) { in IncreasePicBuff()
136 pPicNewBuf->iCapacity = iPicIdx; in IncreasePicBuff()
140 pPicNewBuf->ppPic[iPicIdx] = pPic; in IncreasePicBuff()
173 int32_t iPicIdx = 0; in DecreasePicBuff() local
226 for (iPicIdx = iDelIdx; iPicIdx < kiOldSize; iPicIdx++) { in DecreasePicBuff()
[all …]