Home
last modified time | relevance | path

Searched refs:ptsUs (Results 1 – 3 of 3) sorted by relevance

/frameworks/av/media/module/libmediatranscoding/transcoder/tests/
DMediaSampleWriterTests.cpp253 static std::shared_ptr<MediaSample> newSample(int64_t ptsUs, uint32_t flags, size_t size, in newSample() argument
256 sample->info.presentationTimeUs = ptsUs; in newSample()
268 static std::shared_ptr<MediaSample> newSampleWithPts(int64_t ptsUs) { in newSampleWithPts() argument
273 return newSample(ptsUs, 0, sampleId, sampleId, reinterpret_cast<const uint8_t*>(sampleId)); in newSampleWithPts()
276 static std::shared_ptr<MediaSample> newSampleWithPtsOnly(int64_t ptsUs) { in newSampleWithPtsOnly() argument
277 return newSample(ptsUs, 0, 0, 0, nullptr); in newSampleWithPtsOnly()
/frameworks/av/media/libstagefright/
DFrameDecoder.cpp385 int64_t ptsUs = 0LL; in extractInternal() local
431 CHECK(mediaBuffer->meta_data().findInt64(kKeyTime, &ptsUs)); in extractInternal()
444 codecBuffer->size(), ptsUs, flags); in extractInternal()
450 ptsUs, in extractInternal()
466 &ptsUs, in extractInternal()
483 ALOGV("Received an output buffer, timeUs=%lld", (long long)ptsUs); in extractInternal()
492 err = onOutputReceived(videoFrameBuffer, mOutputFormat, ptsUs, &done); in extractInternal()
494 err = onOutputReceived(videoFrameBuffer, mOutputFormat, ptsUs, &done); in extractInternal()
/frameworks/av/media/libstagefright/include/media/stagefright/
DCodecBase.h68 AccessUnitInfo(uint32_t flags, uint32_t size, int64_t ptsUs) in AccessUnitInfo()
69 :mFlags(flags), mSize(size), mTimestamp(ptsUs) { in AccessUnitInfo()