Home
last modified time | relevance | path

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

/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()
690 if (timestampIncreasing && timestamp != 0 && timestamp <= mLastTimestamp) { in returnBuffer()
692 __FUNCTION__, mId, timestamp, mLastTimestamp); in returnBuffer()
695 mLastTimestamp = timestamp; in returnBuffer()
DCamera3Stream.h594 nsecs_t mLastTimestamp; variable
DCamera3OutputStream.cpp201 mLastTimestamp = timestamp; in returnBufferLocked()
463 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()