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

  /frameworks/av/media/libstagefright/
TimeSource.cpp 26 : mStartTimeUs(ALooper::GetNowUs()) {
30 return ALooper::GetNowUs() - mStartTimeUs;
ThrottledSource.cpp 29 mStartTimeUs(-1),
47 if (mStartTimeUs < 0) {
48 mStartTimeUs = nowUs;
56 int64_t whenUs = mStartTimeUs + durationUs;
AudioSource.cpp 114 mStartTimeUs = 0;
117 mStartTimeUs = startTimeUs;
238 int64_t elapsedTimeUs = timeUs - mStartTimeUs;
284 if (mNumFramesReceived == 0 && timeUs < mStartTimeUs) {
286 ALOGV("Drop audio data at %" PRId64 "/%" PRId64 " us", timeUs, mStartTimeUs);
293 if (mStartTimeUs > 0) {
294 mStartTimeUs = timeUs - mStartTimeUs;
297 mStartTimeUs += mRecord->latency() * 1000;
300 mPrevSampleTimeUs = mStartTimeUs;
    [all...]
CameraSource.cpp 646 mStartTimeUs = 0;
651 mStartTimeUs = startTimeUs;
857 if (!mStarted || (mNumFramesReceived == 0 && timestampUs < mStartTimeUs)) {
858 ALOGV("Drop frame at %" PRId64 "/%" PRId64 " us", timestampUs, mStartTimeUs);
881 if (mStartTimeUs > 0) {
882 if (timestampUs < mStartTimeUs) {
888 mStartTimeUs = timestampUs - mStartTimeUs;
895 int64_t timeUs = mStartTimeUs + (timestampUs - mFirstFrameTimeUs);
898 mStartTimeUs, timeUs)
    [all...]
CameraSourceTimeLapse.cpp 270 if (*timestampUs < mStartTimeUs) {
271 ALOGI("set timestampUs to start time stamp %" PRId64 " us", mStartTimeUs);
272 *timestampUs = mStartTimeUs;
  /frameworks/base/media/java/android/media/
SubtitleData.java 47 private long mStartTimeUs;
62 return mStartTimeUs;
80 mStartTimeUs = parcel.readLong();
  /frameworks/av/include/media/stagefright/
TimeSource.h 44 int64_t mStartTimeUs;
AudioSource.h 82 int64_t mStartTimeUs;
CameraSource.h 160 int64_t 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/media/libstagefright/httplive/
PlaylistFetcher.cpp 66 mStartTimeUs(-1ll),
500 mStartTimeUs = startTimeUs;
751 CHECK_GE(mStartTimeUs, 0ll);
762 // use mStartTimeUs (client supplied timestamp) to determine both start segment
764 mSeqNumber = getSeqNumberForTime(mStartTimeUs);
765 mStartTimeUs -= getSegmentStartTimeUs(mSeqNumber);
769 mStartTimeUs, mSeqNumber, firstSeqNumberInPlaylist,
773 // to media time 0) is used to determine the start segment; mStartTimeUs (absolute
    [all...]
PlaylistFetcher.h 112 int64_t mStartTimeUs;
  /frameworks/av/cmds/stagefright/
sf2.cpp 83 int64_t delayUs = ALooper::GetNowUs() - mStartTimeUs;
164 mStartTimeUs = ALooper::GetNowUs();
277 int64_t mStartTimeUs;
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 594 milliseconds