Searched refs:mStartTimeUs (Results 1 - 12 of 12) 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),
51 if (mStartTimeUs < 0) {
52 mStartTimeUs = nowUs;
60 int64_t whenUs = mStartTimeUs + durationUs;
H A DAudioSource.cpp116 mStartTimeUs = 0;
119 mStartTimeUs = startTimeUs;
239 int64_t elapsedTimeUs = timeUs - mStartTimeUs;
285 if (mNumFramesReceived == 0 && timeUs < mStartTimeUs) {
287 ALOGV("Drop audio data at %lld/%lld us", timeUs, mStartTimeUs);
294 if (mStartTimeUs > 0) {
295 mStartTimeUs = timeUs - mStartTimeUs;
298 mStartTimeUs += mRecord->latency() * 1000;
301 mPrevSampleTimeUs = mStartTimeUs;
[all...]
H A DCameraSource.cpp614 mStartTimeUs = 0;
619 mStartTimeUs = startTimeUs;
806 if (!mStarted || (mNumFramesReceived == 0 && timestampUs < mStartTimeUs)) {
807 ALOGV("Drop frame at %lld/%lld us", timestampUs, mStartTimeUs);
830 if (mStartTimeUs > 0) {
831 if (timestampUs < mStartTimeUs) {
837 mStartTimeUs = timestampUs - mStartTimeUs;
844 int64_t timeUs = mStartTimeUs + (timestampUs - mFirstFrameTimeUs);
847 mStartTimeUs, timeU
[all...]
H A DCameraSourceTimeLapse.cpp257 if (*timestampUs < mStartTimeUs) {
258 ALOGI("set timestampUs to start time stamp %lld us", mStartTimeUs);
259 *timestampUs = mStartTimeUs;
/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.h151 int64_t mStartTimeUs; member in class:android::CameraSource
/frameworks/av/media/libstagefright/wifi-display/source/
H A DRepeaterSource.cpp22 mStartTimeUs(-1ll),
41 mStartTimeUs = -1ll;
98 if (mStartTimeUs < 0ll) {
106 mStartTimeUs = ALooper::GetNowUs();
107 bufferTimeUs = mStartTimeUs;
109 bufferTimeUs = mStartTimeUs + (mFrameCount * 1000000ll) / mRateHz;
144 mStartTimeUs = -1ll;
H A DRepeaterSource.h52 int64_t mStartTimeUs; member in struct:android::RepeaterSource
/frameworks/av/media/libstagefright/include/
H A DThrottledSource.h48 int64_t mStartTimeUs; member in struct:android::ThrottledSource
/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 118 milliseconds