Lines Matching refs:currentNaluSize
332 size_t currentNaluSize = remaining; in decodeFrameInternal() local
334 dumpBytes(currentNalu, currentNaluSize); in decodeFrameInternal()
337 currentNaluSize = nextNalu - currentNalu; in decodeFrameInternal()
342 H264NaluType naluType = H264NaluParser::getFrameNaluType(currentNalu, currentNaluSize, &data); in decodeFrameInternal()
343 size_t dataSize = currentNaluSize - (data - currentNalu); in decodeFrameInternal()
353 if (pRetSzBytes) *pRetSzBytes = currentNaluSize; in decodeFrameInternal()
367 vec.assign(currentNalu, currentNalu + currentNaluSize); in decodeFrameInternal()
382 vec.assign(currentNalu, currentNalu + currentNaluSize); in decodeFrameInternal()
392 handleSEIFrame(currentNalu, currentNaluSize); in decodeFrameInternal()
395 handleIDRFrame(currentNalu, currentNaluSize, pts); in decodeFrameInternal()
399 mSnapshotState.savePacket(currentNalu, currentNaluSize, pts); in decodeFrameInternal()
403 handleNonIDRFrame(currentNalu, currentNaluSize, pts); in decodeFrameInternal()
405 mSnapshotState.savePacket(currentNalu, currentNaluSize, pts); in decodeFrameInternal()
413 remaining -= currentNaluSize; in decodeFrameInternal()
417 if (pRetSzBytes) *pRetSzBytes = currentNaluSize + consumedSzBytes; in decodeFrameInternal()