Home
last modified time | relevance | path

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

/frameworks/av/services/camera/libcameraservice/device3/
DCamera3IOStreamBase.cpp53 mLastTimestamp(0) { in Camera3IOStreamBase()
103 mFrameCount, mLastTimestamp); in dump()
300 mLastTimestamp = timestamp; in returnAnyBufferLocked()
DCamera3InputStream.cpp101 mLastTimestamp = bufferItem.mTimestamp; in getInputBufferLocked()
239 mLastTimestamp = 0; in configureQueueLocked()
DCamera3IOStreamBase.h74 nsecs_t mLastTimestamp; variable
DCamera3Stream.cpp84 mLastTimestamp(0), in Camera3Stream()
775 if (timestampIncreasing && timestamp != 0 && timestamp <= mLastTimestamp in returnBuffer()
778 __FUNCTION__, mId, timestamp, mLastTimestamp); in returnBuffer()
781 mLastTimestamp = timestamp; in returnBuffer()
DCamera3Stream.h634 nsecs_t mLastTimestamp; variable
DCamera3OutputStream.cpp263 mLastTimestamp = timestamp; in returnBufferLocked()
667 mLastTimestamp = 0; in configureConsumerQueueLocked()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
DImsStats.java201 private long mLastTimestamp; field in ImsStats
218 mLastTimestamp = getTimeMillis(); in ImsStats()
230 long duration = now - mLastTimestamp; in conclude()
238 mLastTimestamp = now; in conclude()
282 mLastTimestamp = now; in conclude()
/frameworks/av/media/libstagefright/codecs/on2/enc/
DSoftVPXEncoder.cpp88 mLastTimestamp(0x7FFFFFFFFFFFFFFFLL), in SoftVPXEncoder()
721 if (inputBufferHeader->nTimeStamp > mLastTimestamp) { in onQueueFilled()
722 frameDuration = (uint32_t)(inputBufferHeader->nTimeStamp - mLastTimestamp); in onQueueFilled()
728 mLastTimestamp = inputBufferHeader->nTimeStamp; in onQueueFilled()
782 mLastTimestamp = 0x7FFFFFFFFFFFFFFFLL; in onReset()
DSoftVPXEncoder.h236 OMX_TICKS mLastTimestamp; member
/frameworks/av/media/codec2/components/vpx/
DC2SoftVpxEnc.cpp466 mLastTimestamp(0x7FFFFFFFFFFFFFFFull), in C2SoftVpxEnc()
503 mLastTimestamp = 0x7FFFFFFFFFFFFFFFLL; in onStop()
1029 if (inputTimeStamp > mLastTimestamp) { in process()
1030 frameDuration = (uint32_t)(inputTimeStamp - mLastTimestamp); in process()
1039 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()
/frameworks/av/media/codec2/components/aom/
DC2SoftAomEnc.h82 uint64_t mLastTimestamp; member
DC2SoftAomEnc.cpp392 mLastTimestamp(INT64_MAX), in C2SoftAomEnc()
1061 if (input_timestamp > mLastTimestamp) { in process()
1062 frame_duration = (uint32_t)(input_timestamp - mLastTimestamp); in process()
1071 mLastTimestamp = input_timestamp; in process()