Searched defs:startTimeUs (Results 1 - 15 of 15) sorted by relevance

/frameworks/av/media/libmedia/omx/1.0/
H A DWGraphicBufferSource.cpp61 int64_t startTimeUs) {
62 return toBinderStatus(mBase->setStartTimeUs(startTimeUs));
60 setStartTimeUs( int64_t startTimeUs) argument
/frameworks/av/media/libstagefright/http/
H A DMediaHTTP.cpp98 int64_t startTimeUs = ALooper::GetNowUs(); local
122 int64_t delayUs = ALooper::GetNowUs() - startTimeUs;
/frameworks/av/media/libstagefright/omx/
H A DBWGraphicBufferSource.cpp154 int64_t startTimeUs) {
155 return Status::fromStatusT(mBase->setStartTimeUs(startTimeUs));
153 setStartTimeUs( int64_t startTimeUs) argument
/frameworks/av/cmds/stagefright/
H A DSimplePlayer.cpp629 int64_t startTimeUs = ALooper::GetNowUs(); local
636 int64_t delayUs = ALooper::GetNowUs() - startTimeUs;
H A Dcodec.cpp141 int64_t startTimeUs = ALooper::GetNowUs(); local
310 int64_t elapsedTimeUs = ALooper::GetNowUs() - startTimeUs;
H A Dmediafilter.cpp468 int64_t startTimeUs = ALooper::GetNowUs(); local
646 int64_t elapsedTimeUs = ALooper::GetNowUs() - startTimeUs;
/frameworks/av/media/libstagefright/
H A DSurfaceMediaSource.cpp149 int64_t startTimeUs; local
152 if (params->findInt64(kKeyTime, &startTimeUs)) {
153 mStartTimeNs = startTimeUs * 1000;
H A DAudioSource.cpp135 int64_t startTimeUs; local
136 if (params && params->findInt64(kKeyTime, &startTimeUs)) {
137 mStartTimeUs = startTimeUs;
H A DMediaCodecSource.cpp734 int64_t startTimeUs; local
735 if (params == NULL || !params->findInt64(kKeyTime, &startTimeUs)) {
736 startTimeUs = -1ll;
749 resume(startTimeUs);
765 if (startTimeUs >= 0) {
766 params->setInt64("skip-frames-before", startTimeUs);
H A DCameraSource.cpp801 int64_t startTimeUs; local
802 if (meta->findInt64(kKeyTime, &startTimeUs)) {
803 mStartTimeUs = startTimeUs;
H A DMPEG4Writer.cpp2062 int64_t startTimeUs; local
2063 if (params == NULL || !params->findInt64(kKeyTime, &startTimeUs)) {
2064 startTimeUs = 0;
2066 mStartTimeRealUs = startTimeUs;
2090 startTimeUs += startTimeOffsetUs;
2094 meta->setInt64(kKeyTime, startTimeUs);
/frameworks/av/media/libstagefright/omx/1.0/
H A DWGraphicBufferSource.cpp199 Return<Status> TWGraphicBufferSource::setStartTimeUs(int64_t startTimeUs) { argument
200 return toStatus(mBase->setStartTimeUs(startTimeUs));
/frameworks/base/media/java/android/media/
H A DTtmlRenderer.java651 private List<TtmlNode> getActiveNodes(long startTimeUs, long endTimeUs) { argument
655 if (node.isActive(startTimeUs, endTimeUs)) {
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp1007 int64_t startTimeUs = systemTime() / 1000; local
1008 meta->setInt64(kKeyTime, startTimeUs);
1879 int64_t startTimeUs = systemTime() / 1000; local
1880 (*meta)->setInt64(kKeyTime, startTimeUs);
/frameworks/av/media/libstagefright/httplive/
H A DPlaylistFetcher.cpp536 int64_t startTimeUs,
565 msg->setInt64("startTimeUs", startTimeUs);
696 int64_t startTimeUs; local
700 CHECK(msg->findInt64("startTimeUs", &startTimeUs));
752 if (startTimeUs >= 0 || mSeekMode == LiveSession::kSeekModeNextSample) {
758 if (startTimeUs >= 0) {
759 mStartTimeUs = startTimeUs;
2141 int64_t startTimeUs local
531 startAsync( const sp<AnotherPacketSource> &audioSource, const sp<AnotherPacketSource> &videoSource, const sp<AnotherPacketSource> &subtitleSource, const sp<AnotherPacketSource> &metadataSource, int64_t startTimeUs, int64_t segmentStartTimeUs, int32_t startDiscontinuitySeq, LiveSession::SeekMode seekMode) argument
[all...]

Completed in 255 milliseconds