Home
last modified time | relevance | path

Searched refs:currentTs (Results 1 – 3 of 3) sorted by relevance

/frameworks/av/services/camera/libcameraservice/api2/
DDepthCompositeStream.cpp195 bool DepthCompositeStream::getNextReadyInputLocked(int64_t *currentTs /*inout*/) { in getNextReadyInputLocked() argument
196 if (currentTs == nullptr) { in getNextReadyInputLocked()
203 (it.second.jpegBuffer.data != nullptr) && (it.first < *currentTs)) { in getNextReadyInputLocked()
204 *currentTs = it.first; in getNextReadyInputLocked()
212 int64_t DepthCompositeStream::getNextFailingInputLocked(int64_t *currentTs /*inout*/) { in getNextFailingInputLocked() argument
214 if (currentTs == nullptr) { in getNextFailingInputLocked()
219 if (it.second.error && !it.second.errorNotified && (it.first < *currentTs)) { in getNextFailingInputLocked()
220 *currentTs = it.first; in getNextFailingInputLocked()
393 void DepthCompositeStream::releaseInputFramesLocked(int64_t currentTs) { in releaseInputFramesLocked() argument
396 if (it->first <= currentTs) { in releaseInputFramesLocked()
[all …]
DDepthCompositeStream.h107 void releaseInputFramesLocked(int64_t currentTs);
110 bool getNextReadyInputLocked(int64_t *currentTs /*inout*/);
113 int64_t getNextFailingInputLocked(int64_t *currentTs /*inout*/);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
DCameraTestUtils.java444 long currentTs = -1L; in getCaptureResult() local
452 currentTs = result.get(CaptureResult.SENSOR_TIMESTAMP); in getCaptureResult()
453 if (currentTs == timestamp) { in getCaptureResult()