Home
last modified time | relevance | path

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

/frameworks/av/services/camera/libcameraservice/api2/
DDepthCompositeStream.cpp218 bool DepthCompositeStream::getNextReadyInputLocked(int64_t *currentTs /*inout*/) { in getNextReadyInputLocked() argument
219 if (currentTs == nullptr) { in getNextReadyInputLocked()
226 (it.second.jpegBuffer.data != nullptr) && (it.first < *currentTs)) { in getNextReadyInputLocked()
227 *currentTs = it.first; in getNextReadyInputLocked()
235 int64_t DepthCompositeStream::getNextFailingInputLocked(int64_t *currentTs /*inout*/) { in getNextFailingInputLocked() argument
237 if (currentTs == nullptr) { in getNextFailingInputLocked()
242 if (it.second.error && !it.second.errorNotified && (it.first < *currentTs)) { in getNextFailingInputLocked()
243 *currentTs = it.first; in getNextFailingInputLocked()
426 void DepthCompositeStream::releaseInputFramesLocked(int64_t currentTs) { in releaseInputFramesLocked() argument
429 if (it->first <= currentTs) { in releaseInputFramesLocked()
[all …]
DJpegRCompositeStream.cpp200 bool JpegRCompositeStream::getNextReadyInputLocked(int64_t *currentTs /*inout*/) { in getNextReadyInputLocked() argument
201 if (currentTs == nullptr) { in getNextReadyInputLocked()
210 (it.first < *currentTs)) { in getNextReadyInputLocked()
211 *currentTs = it.first; in getNextReadyInputLocked()
219 int64_t JpegRCompositeStream::getNextFailingInputLocked(int64_t *currentTs /*inout*/) { in getNextFailingInputLocked() argument
221 if (currentTs == nullptr) { in getNextFailingInputLocked()
226 if (it.second.error && !it.second.errorNotified && (it.first < *currentTs)) { in getNextFailingInputLocked()
227 *currentTs = it.first; in getNextFailingInputLocked()
428 void JpegRCompositeStream::releaseInputFramesLocked(int64_t currentTs) { in releaseInputFramesLocked() argument
431 if (it->first <= currentTs) { in releaseInputFramesLocked()
[all …]
DJpegRCompositeStream.h99 void releaseInputFramesLocked(int64_t currentTs);
102 bool getNextReadyInputLocked(int64_t *currentTs /*inout*/);
105 int64_t getNextFailingInputLocked(int64_t *currentTs /*inout*/);
DDepthCompositeStream.h120 void releaseInputFramesLocked(int64_t currentTs);
123 bool getNextReadyInputLocked(int64_t *currentTs /*inout*/);
126 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()