Lines Matching refs:imgBuffer
524 CpuConsumer::LockedBuffer imgBuffer; in compilePendingInputLocked() local
526 auto res = mAppSegmentConsumer->lockNextBuffer(&imgBuffer); in compilePendingInputLocked()
530 } else if ((res != OK) || (*it != imgBuffer.timestamp)) { in compilePendingInputLocked()
537 *it, imgBuffer.timestamp); in compilePendingInputLocked()
544 if ((mPendingInputFrames.find(imgBuffer.timestamp) != mPendingInputFrames.end()) && in compilePendingInputLocked()
545 (mPendingInputFrames[imgBuffer.timestamp].error)) { in compilePendingInputLocked()
546 mAppSegmentConsumer->unlockBuffer(imgBuffer); in compilePendingInputLocked()
548 mPendingInputFrames[imgBuffer.timestamp].appSegmentBuffer = imgBuffer; in compilePendingInputLocked()
555 CpuConsumer::LockedBuffer imgBuffer; in compilePendingInputLocked() local
557 auto res = mMainImageConsumer->lockNextBuffer(&imgBuffer); in compilePendingInputLocked()
567 } else if (*it != imgBuffer.timestamp) { in compilePendingInputLocked()
569 "time stamp: %" PRId64, __FUNCTION__, *it, imgBuffer.timestamp); in compilePendingInputLocked()
575 if ((mPendingInputFrames.find(imgBuffer.timestamp) != mPendingInputFrames.end()) && in compilePendingInputLocked()
576 (mPendingInputFrames[imgBuffer.timestamp].error)) { in compilePendingInputLocked()
577 mMainImageConsumer->unlockBuffer(imgBuffer); in compilePendingInputLocked()
579 mPendingInputFrames[imgBuffer.timestamp].yuvBuffer = imgBuffer; in compilePendingInputLocked()