Home
last modified time | relevance | path

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

/frameworks/av/services/camera/libcameraservice/api2/
DDepthCompositeStream.cpp211 bool DepthCompositeStream::getNextReadyInputLocked(int64_t *currentTs /*inout*/) { in getNextReadyInputLocked() argument
212 if (currentTs == nullptr) { in getNextReadyInputLocked()
219 (it.second.jpegBuffer.data != nullptr) && (it.first < *currentTs)) { in getNextReadyInputLocked()
220 *currentTs = it.first; in getNextReadyInputLocked()
228 int64_t DepthCompositeStream::getNextFailingInputLocked(int64_t *currentTs /*inout*/) { in getNextFailingInputLocked() argument
230 if (currentTs == nullptr) { in getNextFailingInputLocked()
235 if (it.second.error && !it.second.errorNotified && (it.first < *currentTs)) { in getNextFailingInputLocked()
236 *currentTs = it.first; in getNextFailingInputLocked()
418 void DepthCompositeStream::releaseInputFramesLocked(int64_t currentTs) { in releaseInputFramesLocked() argument
421 if (it->first <= currentTs) { in releaseInputFramesLocked()
[all …]
DDepthCompositeStream.h115 void releaseInputFramesLocked(int64_t currentTs);
118 bool getNextReadyInputLocked(int64_t *currentTs /*inout*/);
121 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()