• Home
  • Raw
  • Download

Lines Matching refs:pts

71                                                           CMTime pts,  in videoToolboxDecompressCallback()  argument
86 ptr->mOutputPts = pts.value; in videoToolboxDecompressCallback()
297 uint64_t pts = param.pts; in decodeFrame() local
299 decodeFrameInternal(param.pConsumedBytes, param.pDecoderErrorCode, frame, szBytes, pts, 0); in decodeFrame()
302 void MediaH264DecoderVideoToolBox::oneShotDecode(std::vector<uint8_t> & data, uint64_t pts) { in oneShotDecode() argument
304 decodeFrameInternal(nullptr, nullptr, data.data(), data.size(), pts, 0); in oneShotDecode()
307 …tSzBytes, int32_t* pRetErr, const uint8_t* frame, size_t szBytes, uint64_t pts, size_t consumedSzB… in decodeFrameInternal() argument
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()
427 void MediaH264DecoderVideoToolBox::handleIDRFrame(const uint8_t* ptr, size_t szBytes, uint64_t pts)… in handleIDRFrame() argument
451 CMSampleBufferSetOutputPresentationTimeStamp(sampleBuf, CMTimeMake(pts, 1)); in handleIDRFrame()
473 …MediaH264DecoderVideoToolBox::handleNonIDRFrame(const uint8_t* ptr, size_t szBytes, uint64_t pts) { in handleNonIDRFrame() argument
475 handleIDRFrame(ptr, szBytes, pts); in handleNonIDRFrame()
735 oneShotDecode(pkt.data, pkt.pts); in load()
746 mOutputPts = mSnapshotState.savedDecodedFrame.pts; in load()