Home
last modified time | relevance | path

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

/frameworks/av/services/camera/libcameraservice/api2/
DDepthCompositeStream.cpp217 bool DepthCompositeStream::getNextReadyInputLocked(int64_t *currentTs /*inout*/) { in getNextReadyInputLocked() argument
218 if (currentTs == nullptr) { in getNextReadyInputLocked()
225 (it.second.jpegBuffer.data != nullptr) && (it.first < *currentTs)) { in getNextReadyInputLocked()
226 *currentTs = it.first; in getNextReadyInputLocked()
234 int64_t DepthCompositeStream::getNextFailingInputLocked(int64_t *currentTs /*inout*/) { in getNextFailingInputLocked() argument
236 if (currentTs == nullptr) { in getNextFailingInputLocked()
241 if (it.second.error && !it.second.errorNotified && (it.first < *currentTs)) { in getNextFailingInputLocked()
242 *currentTs = it.first; in getNextFailingInputLocked()
407 void DepthCompositeStream::releaseInputFramesLocked(int64_t currentTs) { in releaseInputFramesLocked() argument
410 if (it->first <= currentTs) { in releaseInputFramesLocked()
[all …]
DHeicCompositeStream.cpp672 bool HeicCompositeStream::getNextReadyInputLocked(int64_t *currentTs /*out*/) { in getNextReadyInputLocked() argument
673 if (currentTs == nullptr) { in getNextReadyInputLocked()
685 (it.first < *currentTs) && in getNextReadyInputLocked()
687 *currentTs = it.first; in getNextReadyInputLocked()
696 int64_t HeicCompositeStream::getNextFailingInputLocked(int64_t *currentTs /*out*/) { in getNextFailingInputLocked() argument
698 if (currentTs == nullptr) { in getNextFailingInputLocked()
703 if (it.second.error && !it.second.errorNotified && (it.first < *currentTs)) { in getNextFailingInputLocked()
704 *currentTs = it.first; in getNextFailingInputLocked()
1101 void HeicCompositeStream::releaseInputFramesLocked(int64_t currentTs) { in releaseInputFramesLocked() argument
1104 if (it->first <= currentTs) { in releaseInputFramesLocked()
[all …]
DDepthCompositeStream.h105 void releaseInputFramesLocked(int64_t currentTs);
108 bool getNextReadyInputLocked(int64_t *currentTs /*inout*/);
111 int64_t getNextFailingInputLocked(int64_t *currentTs /*inout*/);
DHeicCompositeStream.h178 bool getNextReadyInputLocked(int64_t *currentTs /*out*/);
180 int64_t getNextFailingInputLocked(int64_t *currentTs /*out*/);
190 void releaseInputFramesLocked(int64_t currentTs);
/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()