HomeSort by relevance Sort by last modified time
    Searched refs:mStartTimeUs (Results 1 - 15 of 15) sorted by null

  /frameworks/base/media/java/android/media/
SubtitleData.java 47 private long mStartTimeUs;
62 return mStartTimeUs;
80 mStartTimeUs = parcel.readLong();
  /frameworks/av/media/libstagefright/
ThrottledSource.cpp 29 mStartTimeUs(-1),
47 if (mStartTimeUs < 0) {
48 mStartTimeUs = nowUs;
56 int64_t whenUs = mStartTimeUs + durationUs;
AudioSource.cpp 60 mStartTimeUs(0),
133 mStartTimeUs = 0;
136 mStartTimeUs = startTimeUs;
258 int64_t elapsedTimeUs = timeUs - mStartTimeUs;
317 if (mNumFramesReceived == 0 && timeUs < mStartTimeUs) {
319 ALOGV("Drop audio data at %" PRId64 "/%" PRId64 " us", timeUs, mStartTimeUs);
326 if (mStartTimeUs > 0) {
327 mStartTimeUs = timeUs - mStartTimeUs;
330 mStartTimeUs += mRecord->latency() * 1000
    [all...]
CameraSource.cpp 774 mStartTimeUs = 0;
782 mStartTimeUs = startTimeUs;
    [all...]
CameraSourceTimeLapse.cpp 272 if (*timestampUs < mStartTimeUs) {
273 ALOGI("set timestampUs to start time stamp %" PRId64 " us", mStartTimeUs);
274 *timestampUs = mStartTimeUs;
  /frameworks/av/media/libstagefright/wifi-display/source/
RepeaterSource.cpp 22 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 = -1ll
    [all...]
RepeaterSource.h 57 int64_t mStartTimeUs;
  /frameworks/av/media/libstagefright/webm/
WebmFrameThread.cpp 262 mStartTimeUs = startTimeRealUs;
279 mStartTimeUs += startTimeOffsetUs;
286 meta->setInt64(kKeyTime, mStartTimeUs);
331 mStartTimeUs = kUninitialized;
344 if (mStartTimeUs == kUninitialized) {
345 mStartTimeUs = timestampUs;
347 timestampUs -= mStartTimeUs;
WebmFrameThread.h 147 uint64_t mStartTimeUs;
  /frameworks/av/media/libstagefright/include/
ThrottledSource.h 74 int64_t mStartTimeUs;
  /frameworks/av/include/media/stagefright/
AudioSource.h 87 int64_t mStartTimeUs;
CameraSource.h 198 int64_t mStartTimeUs;
  /frameworks/av/media/libstagefright/httplive/
PlaylistFetcher.cpp 150 mStartTimeUs(-1ll),
709 mStartTimeUs = startTimeUs;
981 CHECK_GE(mStartTimeUs, 0ll);
992 // use mStartTimeUs (client supplied timestamp) to determine both start segment
994 mSeqNumber = getSeqNumberForTime(mStartTimeUs);
995 mStartTimeUs -= getSegmentStartTimeUs(mSeqNumber);
999 (long long)mStartTimeUs, mSeqNumber, firstSeqNumberInPlaylist,
1003 // to media time 0) is used to determine the start segment; mStartTimeUs (absolute
    [all...]
PlaylistFetcher.h 126 int64_t mStartTimeUs;
  /frameworks/av/cmds/stagefright/
sf2.cpp 83 int64_t delayUs = ALooper::GetNowUs() - mStartTimeUs;
163 mStartTimeUs = ALooper::GetNowUs();
276 int64_t mStartTimeUs;

Completed in 658 milliseconds