Home
last modified time | relevance | path

Searched refs:mLastTimestamp (Results 1 – 13 of 13) sorted by relevance

/frameworks/opt/gamesdk/src/swappy/
DChoreographerFilter.cpp50 if (point == mLastTimestamp) { in addTimestamp()
57 mLastTimestamp = point; in addTimestamp()
95 time_point mLastTimestamp = std::chrono::steady_clock::now(); member in __anone1a860ef0111::Timer
123 mLastTimestamp = std::chrono::steady_clock::now(); in onChoreographer()
181 auto timestamp = mLastTimestamp; in threadMain()
191 mCondition.wait(lock, [=]() { return mLastTimestamp != timestamp; }); in threadMain()
192 timestamp = mLastTimestamp; in threadMain()
DChoreographerFilter.h54 std::chrono::steady_clock::time_point mLastTimestamp; variable
/frameworks/av/services/camera/libcameraservice/device3/
DCamera3IOStreamBase.cpp43 mLastTimestamp(0) { in Camera3IOStreamBase()
89 mFrameCount, mLastTimestamp); in dump()
275 mLastTimestamp = timestamp; in returnAnyBufferLocked()
DCamera3InputStream.cpp92 mLastTimestamp = bufferItem.mTimestamp; in getInputBufferLocked()
230 mLastTimestamp = 0; in configureQueueLocked()
DCamera3IOStreamBase.h61 nsecs_t mLastTimestamp; variable
DCamera3Stream.cpp75 mLastTimestamp(0) { in Camera3Stream()
693 if (timestampIncreasing && timestamp != 0 && timestamp <= mLastTimestamp) { in returnBuffer()
695 __FUNCTION__, mId, timestamp, mLastTimestamp); in returnBuffer()
698 mLastTimestamp = timestamp; in returnBuffer()
DCamera3Stream.h594 nsecs_t mLastTimestamp; variable
DCamera3OutputStream.cpp206 mLastTimestamp = timestamp; in returnBufferLocked()
468 mLastTimestamp = 0; in configureConsumerQueueLocked()
/frameworks/av/media/libstagefright/codecs/on2/enc/
DSoftVPXEncoder.cpp88 mLastTimestamp(0x7FFFFFFFFFFFFFFFLL), in SoftVPXEncoder()
712 if (inputBufferHeader->nTimeStamp > mLastTimestamp) { in onQueueFilled()
713 frameDuration = (uint32_t)(inputBufferHeader->nTimeStamp - mLastTimestamp); in onQueueFilled()
719 mLastTimestamp = inputBufferHeader->nTimeStamp; in onQueueFilled()
773 mLastTimestamp = 0x7FFFFFFFFFFFFFFFLL; in onReset()
DSoftVPXEncoder.h236 OMX_TICKS mLastTimestamp; member
/frameworks/av/media/codec2/components/vpx/
DC2SoftVpxEnc.cpp67 mLastTimestamp(0x7FFFFFFFFFFFFFFFull), in C2SoftVpxEnc()
101 mLastTimestamp = 0x7FFFFFFFFFFFFFFFLL; in onStop()
579 if (inputTimeStamp > mLastTimestamp) { in process()
580 frameDuration = (uint32_t)(inputTimeStamp - mLastTimestamp); in process()
589 mLastTimestamp = inputTimeStamp; in process()
DC2SoftVpxEnc.h198 uint64_t mLastTimestamp; member
/frameworks/base/media/java/android/media/
DWebVttRenderer.java103 long mLastTimestamp; field in UnstyledTextExtractor
113 mLastTimestamp = -1; in init()
130 if (mLine.length() > 0 && timestampMs != mLastTimestamp) { in onTimeStamp()
132 new TextTrackCueSpan(mLine.toString(), mLastTimestamp)); in onTimeStamp()
135 mLastTimestamp = timestampMs; in onTimeStamp()
143 new TextTrackCueSpan(mLine.toString(), mLastTimestamp)); in onLineEnd()