Home
last modified time | relevance | path

Searched refs:dataProcesses_ (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/distributedhardware/distributed_camera/services/cameraservice/sinkservice/src/distributedcameramgr/
H A Ddcamera_sink_output.cpp63 dataProcesses_.emplace(type, dataProcess); in InitInner()
72 dataProcesses_.clear(); in UnInit()
141 if (dataProcesses_.find(info->streamType_) == dataProcesses_.end()) { in StartCapture()
157 auto iterCon = dataProcesses_.find(CONTINUOUS_FRAME); in StopCapture()
158 if (iterCon != dataProcesses_.end()) { in StopCapture()
167 auto iterSnap = dataProcesses_.find(SNAPSHOT_FRAME); in StopCapture()
168 if (iterSnap != dataProcesses_.end()) { in StopCapture()
187 if (dataProcesses_.find(CONTINUOUS_FRAME) == dataProcesses_.end()) { in OnVideoResult()
196 if (dataProcesses_.find(SNAPSHOT_FRAME) == dataProcesses_.end()) { in OnPhotoResult()
200 dataProcesses_[SNAPSHOT_FRAME]->FeedStream(buffer); in OnPhotoResult()
[all …]
/ohos5.0/foundation/distributedhardware/distributed_camera/services/cameraservice/sinkservice/test/unittest/common/distributedcameramgr/
H A Ddcamera_sink_output_test.cpp129 output_->dataProcesses_.clear(); in TearDown()
169 output_->dataProcesses_.emplace(SNAPSHOT_FRAME, dataProcess_);
170 output_->dataProcesses_.emplace(CONTINUOUS_FRAME, dataProcess_);
190 output_->dataProcesses_.emplace(SNAPSHOT_FRAME, dataProcess_);
191 output_->dataProcesses_.emplace(CONTINUOUS_FRAME, dataProcess_);
211 output_->dataProcesses_.emplace(SNAPSHOT_FRAME, dataProcess_);
212 output_->dataProcesses_.emplace(CONTINUOUS_FRAME, dataProcess_);
232 output_->dataProcesses_.emplace(SNAPSHOT_FRAME, dataProcess_);
233 output_->dataProcesses_.emplace(CONTINUOUS_FRAME, dataProcess_);
288 output_->dataProcesses_.emplace(CONTINUOUS_FRAME, dataProcess_);
/ohos5.0/foundation/distributedhardware/distributed_camera/services/cameraservice/sinkservice/include/distributedcameramgr/
H A Ddcamera_sink_output.h59 std::map<DCStreamType, std::shared_ptr<ICameraSinkDataProcess>> dataProcesses_; variable