Home
last modified time | relevance | path

Searched refs:streamMap_ (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/drivers/peripheral/camera/vdi_base/v4l2/src/stream_operator/
H A Dstream_operator_vdi_impl.cpp85 for (auto &it : streamMap_) { in GetStreamSupportType()
282 if (it == streamMap_.end()) { in ReleaseStreams()
290 streamMap_.erase(it); in ReleaseStreams()
305 for (auto it : streamMap_) { in ReleaseStreams()
327 std::transform(streamMap_.begin(), streamMap_.end(), std::back_inserter(configs), in CommitStreams()
345 for (auto it : streamMap_) { in CommitStreams()
376 for (auto it : streamMap_) { in GetStreamAttributes()
407 if (it == streamMap_.end()) { in AttachBufferQueue()
442 if (it == streamMap_.end()) { in DetachBufferQueue()
474 if (it == streamMap_.end()) { in Capture()
[all …]
/ohos5.0/docs/zh-cn/device-dev/driver/
H A Ddriver-peripherals-camera-des.md362 if (streamMap_.count(it.streamId_) > 0) {
395 streamMap_[stream->GetStreamId()] = stream;
424 std::transform(streamMap_.begin(), streamMap_.end(), std::back_inserter(configs),
436 for (auto it : streamMap_) {
442 for (auto it : streamMap_) {
488 auto it = streamMap_.find(id);
489 if (it == streamMap_.end()) {
509 RetCode rc = streamMap_[id]->AddRequest(request);
561 auto it = streamMap_.find(id);
562 if (it == streamMap_.end()) {
[all …]
/ohos5.0/docs/en/device-dev/driver/
H A Ddriver-peripherals-camera-des.md370 if (streamMap_.count(it.streamId_) > 0) {
403 streamMap_[stream->GetStreamId()] = stream;
432 std::transform(streamMap_.begin(), streamMap_.end(), std::back_inserter(configs),
444 for (auto it : streamMap_) {
450 for (auto it : streamMap_) {
496 auto it = streamMap_.find(id);
497 if (it == streamMap_.end()) {
517 RetCode rc = streamMap_[id]->AddRequest(request);
569 auto it = streamMap_.find(id);
570 if (it == streamMap_.end()) {
[all …]
/ohos5.0/drivers/peripheral/camera/vdi_base/v4l2/include/stream_operator/
H A Dstream_operator_vdi_impl.h82 std::unordered_map<int32_t, std::shared_ptr<IStream>> streamMap_ = {}; variable