Home
last modified time | relevance | path

Searched refs:mInflightBatches (Results 1 – 2 of 2) sorted by relevance

/hardware/interfaces/camera/device/3.2/default/
DCameraDeviceSession.cpp426 mInflightBatches.push_back(batch); in registerBatch()
433 int numBatches = mInflightBatches.size(); in getBatch()
437 uint32_t frameMin = mInflightBatches[0]->mFirstFrame; in getBatch()
438 uint32_t frameMax = mInflightBatches[numBatches - 1]->mLastFrame; in getBatch()
443 if (frameNumber >= mInflightBatches[i]->mFirstFrame && in getBatch()
444 frameNumber <= mInflightBatches[i]->mLastFrame) { in getBatch()
445 return std::make_pair(i, mInflightBatches[i]); in getBatch()
453 if (mInflightBatches.size() > 0) { in checkAndRemoveFirstBatch()
454 std::shared_ptr<InflightBatch> batch = mInflightBatches[0]; in checkAndRemoveFirstBatch()
464 mInflightBatches.pop_front(); in checkAndRemoveFirstBatch()
[all …]
DCameraDeviceSession.h286 std::deque<std::shared_ptr<InflightBatch>> mInflightBatches; member