Searched refs:mStartTimeUs (Results 1 - 15 of 15) sorted by relevance

/frameworks/av/media/libstagefright/
H A DTimeSource.cpp26 : mStartTimeUs(ALooper::GetNowUs()) {
30 return ALooper::GetNowUs() - mStartTimeUs;
H A DThrottledSource.cpp29 mStartTimeUs(-1),
47 if (mStartTimeUs < 0) {
48 mStartTimeUs = nowUs;
56 int64_t whenUs = mStartTimeUs + durationUs;
H A DAudioSource.cpp112 mStartTimeUs = 0;
115 mStartTimeUs = startTimeUs;
234 int64_t elapsedTimeUs = timeUs - mStartTimeUs;
280 if (mNumFramesReceived == 0 && timeUs < mStartTimeUs) {
282 ALOGV("Drop audio data at %lld/%lld us", timeUs, mStartTimeUs);
289 if (mStartTimeUs > 0) {
290 mStartTimeUs = timeUs - mStartTimeUs;
293 mStartTimeUs += mRecord->latency() * 1000;
296 mPrevSampleTimeUs = mStartTimeUs;
[all...]
H A DCameraSource.cpp625 mStartTimeUs = 0;
630 mStartTimeUs = startTimeUs;
817 if (!mStarted || (mNumFramesReceived == 0 && timestampUs < mStartTimeUs)) {
818 ALOGV("Drop frame at %lld/%lld us", timestampUs, mStartTimeUs);
841 if (mStartTimeUs > 0) {
842 if (timestampUs < mStartTimeUs) {
848 mStartTimeUs = timestampUs - mStartTimeUs;
855 int64_t timeUs = mStartTimeUs + (timestampUs - mFirstFrameTimeUs);
858 mStartTimeUs, timeU
[all...]
H A DCameraSourceTimeLapse.cpp267 if (*timestampUs < mStartTimeUs) {
268 ALOGI("set timestampUs to start time stamp %lld us", mStartTimeUs);
269 *timestampUs = mStartTimeUs;
/frameworks/base/media/java/android/media/
H A DSubtitleData.java48 private long mStartTimeUs; field in class:SubtitleData
63 return mStartTimeUs;
81 mStartTimeUs = parcel.readLong();
/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;
117 if (mStartTimeUs < 0ll) {
125 mStartTimeUs = ALooper::GetNowUs();
126 bufferTimeUs = mStartTimeUs;
128 bufferTimeUs = mStartTimeUs + (mFrameCount * 1000000ll) / mRateHz;
166 mStartTimeUs
[all...]
H A DRepeaterSource.h57 int64_t mStartTimeUs; member in struct:android::RepeaterSource
/frameworks/av/include/media/stagefright/
H A DTimeSource.h44 int64_t mStartTimeUs; member in class:android::SystemTimeSource
H A DAudioSource.h82 int64_t mStartTimeUs; member in struct:android::AudioSource
H A DCameraSource.h160 int64_t mStartTimeUs; member in class:android::CameraSource
/frameworks/av/media/libstagefright/include/
H A DThrottledSource.h74 int64_t mStartTimeUs; member in struct:android::ThrottledSource
/frameworks/av/media/libstagefright/httplive/
H A DPlaylistFetcher.h88 int64_t mStartTimeUs; member in struct:android::PlaylistFetcher
H A DPlaylistFetcher.cpp59 mStartTimeUs(-1ll),
413 mStartTimeUs = startTimeUs;
415 if (mStartTimeUs >= 0ll) {
552 CHECK_GE(mStartTimeUs, 0ll);
555 mSeqNumber = getSeqNumberForTime(mStartTimeUs);
564 mStartTimeUs = -1ll;
/frameworks/av/cmds/stagefright/
H A Dsf2.cpp120 mStartTimeUs = ALooper::GetNowUs();
183 int64_t delayUs = ALooper::GetNowUs() - mStartTimeUs;
253 int64_t mStartTimeUs; member in struct:Controller

Completed in 523 milliseconds