Lines Matching refs:imgBuffer
120 CpuConsumer::LockedBuffer imgBuffer; in compilePendingInputLocked() local
124 auto res = mBlobConsumer->lockNextBuffer(&imgBuffer); in compilePendingInputLocked()
136 if (*it != imgBuffer.timestamp) { in compilePendingInputLocked()
138 "time stamp: %" PRId64, __FUNCTION__, *it, imgBuffer.timestamp); in compilePendingInputLocked()
141 if ((mPendingInputFrames.find(imgBuffer.timestamp) != mPendingInputFrames.end()) && in compilePendingInputLocked()
142 (mPendingInputFrames[imgBuffer.timestamp].error)) { in compilePendingInputLocked()
143 mBlobConsumer->unlockBuffer(imgBuffer); in compilePendingInputLocked()
145 mPendingInputFrames[imgBuffer.timestamp].jpegBuffer = imgBuffer; in compilePendingInputLocked()
153 auto res = mDepthConsumer->lockNextBuffer(&imgBuffer); in compilePendingInputLocked()
165 if (*it != imgBuffer.timestamp) { in compilePendingInputLocked()
167 "time stamp: %" PRId64, __FUNCTION__, *it, imgBuffer.timestamp); in compilePendingInputLocked()
170 if ((mPendingInputFrames.find(imgBuffer.timestamp) != mPendingInputFrames.end()) && in compilePendingInputLocked()
171 (mPendingInputFrames[imgBuffer.timestamp].error)) { in compilePendingInputLocked()
172 mDepthConsumer->unlockBuffer(imgBuffer); in compilePendingInputLocked()
174 mPendingInputFrames[imgBuffer.timestamp].depthBuffer = imgBuffer; in compilePendingInputLocked()