Home
last modified time | relevance | path

Searched refs:mPendingInputFrames (Results 1 – 6 of 6) sorted by relevance

/frameworks/av/services/camera/libcameraservice/api2/
DHeicCompositeStream.cpp268 if (mPendingInputFrames.size() > 0) { in deleteInternalStreams()
270 __FUNCTION__, mPendingInputFrames.size()); in deleteInternalStreams()
271 mPendingInputFrames.clear(); in deleteInternalStreams()
614 mPendingInputFrames[i->first].orientation = i->second.orientation; in compilePendingInputLocked()
615 mPendingInputFrames[i->first].quality = i->second.quality; in compilePendingInputLocked()
616 mPendingInputFrames[i->first].timestamp = i->second.timestamp; in compilePendingInputLocked()
617 mPendingInputFrames[i->first].requestId = i->second.requestId; in compilePendingInputLocked()
623 if (mPendingInputFrames.size() == 1) { in compilePendingInputLocked()
630 int32_t newQuality = mPendingInputFrames.begin()->second.quality; in compilePendingInputLocked()
655 mPendingInputFrames[*it].error = true; in compilePendingInputLocked()
[all …]
DJpegRCompositeStream.cpp103 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()
[all …]
DDepthCompositeStream.cpp131 mPendingInputFrames[*it].error = true; in compilePendingInputLocked()
141 if ((mPendingInputFrames.find(imgBuffer.timestamp) != mPendingInputFrames.end()) && in compilePendingInputLocked()
142 (mPendingInputFrames[imgBuffer.timestamp].error)) { in compilePendingInputLocked()
145 mPendingInputFrames[imgBuffer.timestamp].jpegBuffer = imgBuffer; in compilePendingInputLocked()
160 mPendingInputFrames[*it].error = true; in compilePendingInputLocked()
170 if ((mPendingInputFrames.find(imgBuffer.timestamp) != mPendingInputFrames.end()) && in compilePendingInputLocked()
171 (mPendingInputFrames[imgBuffer.timestamp].error)) { in compilePendingInputLocked()
174 mPendingInputFrames[imgBuffer.timestamp].depthBuffer = imgBuffer; in compilePendingInputLocked()
185 mPendingInputFrames[it->first].frameNumber = std::get<0>(it->second); in compilePendingInputLocked()
186 mPendingInputFrames[it->first].result = std::get<1>(it->second); in compilePendingInputLocked()
[all …]
DJpegRCompositeStream.h146 std::unordered_map<int64_t, InputFrame> mPendingInputFrames; variable
DDepthCompositeStream.h158 std::unordered_map<int64_t, InputFrame> mPendingInputFrames; variable
DHeicCompositeStream.h278 std::map<int64_t, InputFrame> mPendingInputFrames; variable