Searched refs:mStartTimeUs (Results 1 - 20 of 20) sorted by last modified time

/frameworks/base/media/java/android/media/
H A DSubtitleData.java47 private long mStartTimeUs; field in class:SubtitleData
62 return mStartTimeUs;
80 mStartTimeUs = parcel.readLong();
/frameworks/av/include/media/stagefright/
H A DAudioSource.h87 int64_t mStartTimeUs; member in struct:android::AudioSource
H A DCameraSource.h202 int64_t mStartTimeUs; member in class:android::CameraSource
H A DThrottledSource.h74 int64_t mStartTimeUs; member in struct:android::ThrottledSource
/frameworks/av/media/libstagefright/foundation/include/
H A DAudioSource.h87 int64_t mStartTimeUs; member in struct:android::AudioSource
H A DCameraSource.h202 int64_t mStartTimeUs; member in class:android::CameraSource
H A DThrottledSource.h74 int64_t mStartTimeUs; member in struct:android::ThrottledSource
/frameworks/av/media/libstagefright/httplive/
H A DPlaylistFetcher.cpp150 mStartTimeUs(-1ll),
759 mStartTimeUs = startTimeUs;
1063 CHECK_GE(mStartTimeUs, 0ll);
1071 // use mStartTimeUs (client supplied timestamp) to determine both start segment
1073 mSeqNumber = getSeqNumberForTime(mStartTimeUs);
1074 mStartTimeUs -= getSegmentStartTimeUs(mSeqNumber);
1078 (long long)mStartTimeUs, mSeqNumber, firstSeqNumberInPlaylist,
1082 // to media time 0) is used to determine the start segment; mStartTimeUs (absolute
1227 "mDiscontinuitySeq %d, mStartTimeUs %lld",
1228 mStartup, mLastDiscontinuitySeq, mDiscontinuitySeq, (long long)mStartTimeUs);
[all...]
H A DPlaylistFetcher.h127 int64_t mStartTimeUs; member in struct:android::PlaylistFetcher
/frameworks/av/media/libstagefright/include/
H A DAudioSource.h87 int64_t mStartTimeUs; member in struct:android::AudioSource
H A DCameraSource.h202 int64_t mStartTimeUs; member in class:android::CameraSource
H A DThrottledSource.h74 int64_t mStartTimeUs; member in struct:android::ThrottledSource
/frameworks/av/media/libstagefright/webm/
H A DWebmFrameThread.cpp268 mStartTimeUs = startTimeRealUs;
285 mStartTimeUs += startTimeOffsetUs;
292 meta->setInt64(kKeyTime, mStartTimeUs);
337 mStartTimeUs = kUninitialized;
350 if (mStartTimeUs == kUninitialized) {
351 mStartTimeUs = timestampUs;
353 timestampUs -= mStartTimeUs;
H A DWebmFrameThread.h147 uint64_t mStartTimeUs; member in class:android::WebmFrameMediaSourceThread
/frameworks/av/media/libstagefright/wifi-display/source/
H A DRepeaterSource.cpp22 mStartTimeUs(-1ll),
41 if (mStartTimeUs >= 0ll) {
42 int64_t nextTimeUs = mStartTimeUs + (mFrameCount * 1000000ll) / mRateHz;
43 mStartTimeUs = nextTimeUs;
60 mStartTimeUs = -1ll;
118 if (mStartTimeUs < 0ll) {
126 mStartTimeUs = ALooper::GetNowUs();
127 bufferTimeUs = mStartTimeUs;
129 bufferTimeUs = mStartTimeUs + (mFrameCount * 1000000ll) / mRateHz;
167 mStartTimeUs
[all...]
H A DRepeaterSource.h57 int64_t mStartTimeUs; member in struct:android::RepeaterSource
/frameworks/av/media/libstagefright/
H A DAudioSource.cpp60 mStartTimeUs(0),
134 mStartTimeUs = 0;
137 mStartTimeUs = startTimeUs;
259 int64_t elapsedTimeUs = timeUs - mStartTimeUs;
332 if (mNumFramesReceived == 0 && timeUs < mStartTimeUs) {
336 receievedFrames, timeUs, mStartTimeUs);
344 if (mStartTimeUs > 0) {
345 mStartTimeUs = timeUs - mStartTimeUs;
347 mPrevSampleTimeUs = mStartTimeUs;
[all...]
H A DCameraSource.cpp795 mStartTimeUs = 0;
803 mStartTimeUs = startTimeUs;
1099 if (!mStarted || (mNumFramesReceived == 0 && timestampUs < mStartTimeUs)) {
1100 ALOGV("Drop frame at %lld/%lld us", (long long)timestampUs, (long long)mStartTimeUs);
1125 if (mStartTimeUs > 0) {
1126 if (timestampUs < mStartTimeUs) {
1131 mStartTimeUs = timestampUs - mStartTimeUs;
1152 int64_t timeUs = mStartTimeUs + (timestampUs - mFirstFrameTimeUs);
1155 mStartTimeUs, timeU
[all...]
H A DCameraSourceTimeLapse.cpp272 if (*timestampUs < mStartTimeUs) {
273 ALOGI("set timestampUs to start time stamp %" PRId64 " us", mStartTimeUs);
274 *timestampUs = mStartTimeUs;
H A DThrottledSource.cpp29 mStartTimeUs(-1),
47 if (mStartTimeUs < 0) {
48 mStartTimeUs = nowUs;
56 int64_t whenUs = mStartTimeUs + durationUs;

Completed in 695 milliseconds