Searched refs:timeUs (Results 26 - 50 of 81) sorted by last modified time

1234

/frameworks/av/media/libstagefright/rtsp/
H A DMyHandler.h180 void seek(int64_t timeUs) { argument
182 msg->setInt64("time", timeUs);
895 int64_t timeUs; local
896 CHECK(msg->findInt64("time", &timeUs));
916 reply->setInt64("time", timeUs);
936 int64_t timeUs; local
937 CHECK(msg->findInt64("time", &timeUs));
949 "Range: npt=%lld-\r\n", timeUs / 1000000ll));
1478 accessUnit->meta()->setInt64("timeUs", mediaTimeUs);
H A DMyTransmitter.h638 int64_t timeUs; local
639 CHECK(mediaBuf->meta_data()->findInt64(kKeyTime, &timeUs));
641 uint32_t rtpTime = mRTPTimeBase + (timeUs * 9 / 100ll);
H A Drtp_test.cpp213 int64_t timeUs; local
214 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timeUs));
217 buffer->range_length(), timeUs / 1E6);
/frameworks/av/media/libstagefright/timedtext/
H A DTimedText3GPPSource.cpp66 int64_t timeUs, const MediaBuffer *textBuffer, Parcel *parcel) {
82 (const uint8_t *)data, size, flag, timeUs / 1000, parcel);
65 extractAndAppendLocalDescriptions( int64_t timeUs, const MediaBuffer *textBuffer, Parcel *parcel) argument
H A DTimedText3GPPSource.h50 int64_t timeUs, const MediaBuffer *textBuffer, Parcel *parcel);
H A DTimedTextDriver.cpp163 status_t TimedTextDriver::seekToAsync(int64_t timeUs) { argument
170 mPlayer->seekToAsync(timeUs);
175 mPlayer->seekToAsync(timeUs);
179 mPlayer->seekToAsync(timeUs);
H A DTimedTextPlayer.cpp69 void TimedTextPlayer::seekToAsync(int64_t timeUs) { argument
71 msg->setInt64("seekTimeUs", timeUs);
259 void TimedTextPlayer::postTextEvent(const sp<ParcelEvent>& parcel, int64_t timeUs) { argument
260 int64_t delayUs = delayUsFromCurrentTime(timeUs);
266 msg->setInt64("fireTimeUs", timeUs);
H A DTimedTextPlayer.h44 void seekToAsync(int64_t timeUs);
75 void postTextEvent(const sp<ParcelEvent>& parcel = NULL, int64_t timeUs = -1);
H A DTimedTextSRTSource.cpp271 int64_t timeUs, const AString &text, Parcel *parcel) {
279 (const uint8_t *)data, size, flag, timeUs / 1000, parcel);
284 int TimedTextSRTSource::compareExtendedRangeAndTime(size_t index, int64_t timeUs) { argument
289 if (timeUs >= startTimeUs && timeUs < endTimeUs) {
291 } else if (endTimeUs <= timeUs) {
270 extractAndAppendLocalDescriptions( int64_t timeUs, const AString &text, Parcel *parcel) argument
H A DTimedTextSRTSource.h71 int64_t timeUs, const AString &text, Parcel *parcel);
73 // Compares the time range of the subtitle at index to the given timeUs.
74 // The time range of the subtitle to match with given timeUs is extended to
78 // called with seek options. Note that timeUs within gap ranges, such as
87 // returns 0, if timeUs is in [200, 400)
88 // returns -1, if timeUs >= 400,
89 // returns 1, if timeUs < 200.
90 int compareExtendedRangeAndTime(size_t index, int64_t timeUs);
/frameworks/av/media/libstagefright/wifi-display/source/
H A DConverter.cpp416 int64_t timeUs; local
417 CHECK(buffer->meta()->findInt64("timeUs", &timeUs));
420 timeUs += copyUs;
421 buffer->meta()->setInt64("timeUs", timeUs);
462 int64_t timeUs; local
463 CHECK(buffer->meta()->findInt64("timeUs", &timeUs));
465 partialAudioAU->meta()->setInt64("timeUs", timeU
501 int64_t timeUs = 0ll; local
555 int64_t timeUs; local
[all...]
H A DMediaPuller.cpp144 int64_t timeUs; local
145 CHECK(mbuf->meta_data()->findInt64(kKeyTime, &timeUs));
153 accessUnit->meta()->setInt64("timeUs", timeUs);
H A DPlaybackSession.cpp81 bool hasOutputBuffer(int64_t *timeUs) const;
265 int64_t *timeUs) const {
266 *timeUs = 0ll;
274 CHECK(outputBuffer->meta()->findInt64("timeUs", timeUs));
863 int64_t timeUs = ALooper::GetNowUs(); local
864 if (mPrevTimeUs < 0ll || mPrevTimeUs + 100000ll <= timeUs) {
868 mPrevTimeUs = timeUs;
927 int64_t timeUs; local
928 if (track->hasOutputBuffer(&timeUs)) {
[all...]
H A DSender.cpp361 int64_t timeUs, const sp<ABuffer> &packets) {
373 mFirstOutputBufferReadyTimeUs = timeUs;
379 whenUs = (timeUs - mFirstOutputBufferReadyTimeUs)
388 packets->meta()->setInt64("timeUs", timeUs);
360 queuePackets( int64_t timeUs, const sp<ABuffer> &packets) argument
H A DSender.h54 void queuePackets(int64_t timeUs, const sp<ABuffer> &packets);
H A DTSPacketizer.cpp400 int64_t timeUs; local
401 CHECK(accessUnit->meta()->findInt64("timeUs", &timeUs));
692 uint64_t PTS = (timeUs * 9ll) / 100ll;
853 int64_t timeUs; local
854 CHECK(accessUnit->meta()->findInt64("timeUs", &timeUs));
858 accessUnit2->meta()->setInt64("timeUs", timeUs);
/frameworks/av/cmds/stagefright/
H A DSimplePlayer.cpp490 int64_t timeUs; local
491 CHECK_EQ(mExtractor->getSampleTime(&timeUs), (status_t)OK);
497 timeUs,
H A Dcodec.cpp175 int64_t timeUs; local
176 err = extractor->getSampleTime(&timeUs);
185 timeUs,
211 0ll /* timeUs */,
H A Dsf2.cpp432 outBuffer->meta()->setInt64("timeUs", 0);
482 int64_t timeUs; local
483 CHECK(inBuffer->meta_data()->findInt64(kKeyTime, &timeUs));
485 outBuffer->meta()->setInt64("timeUs", timeUs);
H A Dstagefright.cpp575 int64_t timeUs; local
576 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timeUs));
578 printf("%lld\t%lld\t%lld\n", seekTimeUs, timeUs, seekTimeUs - timeUs);
/frameworks/av/include/media/
H A DIMediaMetadataRetriever.h40 virtual sp<IMemory> getFrameAtTime(int64_t timeUs, int option) = 0;
H A DMediaMetadataRetrieverInterface.h39 virtual VideoFrame* getFrameAtTime(int64_t timeUs, int option) = 0;
51 virtual VideoFrame* getFrameAtTime(int64_t timeUs, int option) { return NULL; } argument
H A Dmediametadataretriever.h75 sp<IMemory> getFrameAtTime(int64_t timeUs, int option);
/frameworks/av/include/media/stagefright/
H A DAudioSource.h99 void queueInputBuffer_l(MediaBuffer *buffer, int64_t timeUs);
H A DMPEG4Writer.h99 void setStartTimestampUs(int64_t timeUs);
113 Chunk(Track *track, int64_t timeUs, List<MediaBuffer *> samples) argument
114 : mTrack(track), mTimeStampUs(timeUs), mSamples(samples) {
176 void trackProgressStatus(size_t trackId, int64_t timeUs, status_t err = OK);

Completed in 152 milliseconds

1234