Lines Matching refs:mPendingInputFrames

103             mPendingInputFrames[*it].error = true;  in compilePendingInputLocked()
113 if ((mPendingInputFrames.find(imgBuffer.timestamp) != mPendingInputFrames.end()) && in compilePendingInputLocked()
114 (mPendingInputFrames[imgBuffer.timestamp].error)) { in compilePendingInputLocked()
117 mPendingInputFrames[imgBuffer.timestamp].jpegBuffer = imgBuffer; in compilePendingInputLocked()
132 mPendingInputFrames[*it].error = true; in compilePendingInputLocked()
142 if ((mPendingInputFrames.find(imgBuffer.timestamp) != mPendingInputFrames.end()) && in compilePendingInputLocked()
143 (mPendingInputFrames[imgBuffer.timestamp].error)) { in compilePendingInputLocked()
146 mPendingInputFrames[imgBuffer.timestamp].p010Buffer = imgBuffer; in compilePendingInputLocked()
158 mPendingInputFrames[it->first].frameNumber = frameNumber; in compilePendingInputLocked()
159 mPendingInputFrames[it->first].result = std::get<1>(it->second); in compilePendingInputLocked()
168 mPendingInputFrames[it->second].frameNumber = frameNumber; in compilePendingInputLocked()
171 mPendingInputFrames[it->second].requestTimeNs = requestTimeIt->second; in compilePendingInputLocked()
180 for (auto &inputFrame : mPendingInputFrames) { in compilePendingInputLocked()
206 for (const auto& it : mPendingInputFrames) { in getNextReadyInputLocked()
225 for (const auto& it : mPendingInputFrames) { in getNextFailingInputLocked()
429 auto it = mPendingInputFrames.begin(); in releaseInputFramesLocked()
430 while (it != mPendingInputFrames.end()) { in releaseInputFramesLocked()
433 it = mPendingInputFrames.erase(it); in releaseInputFramesLocked()
467 releaseInputFrameLocked(&mPendingInputFrames[currentTs]); in threadLoop()
483 auto res = processInputFrame(currentTs, mPendingInputFrames[currentTs]); in threadLoop()
488 mPendingInputFrames[currentTs].error = true; in threadLoop()