Home
last modified time | relevance | path

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

/ohos5.0/drivers/peripheral/distributed_camera/hdi_service/src/dcamera_device/
H A Ddmetadata_processor.cpp748 std::vector<DCResolution> resolutionVec; in GetNodeSupportedResolution() local
775 resolutionVec.push_back(resolution); in GetNodeSupportedResolution()
777 if (!resolutionVec.empty()) { in GetNodeSupportedResolution()
778 std::sort(resolutionVec.begin(), resolutionVec.end()); in GetNodeSupportedResolution()
779 supportedFormats[format] = resolutionVec; in GetNodeSupportedResolution()
785 maxPhotoResolution_.width_ = resolutionVec[0].width_; in GetNodeSupportedResolution()
788 StoreSinkAndSrcConfig(format, rootNode, resolutionVec); in GetNodeSupportedResolution()
793 std::vector<DCResolution> &resolutionVec) in StoreSinkAndSrcConfig() argument
796 sinkPhotoProfiles_[format] = resolutionVec; in StoreSinkAndSrcConfig()
798 sinkPreviewProfiles_[format] = resolutionVec; in StoreSinkAndSrcConfig()
[all …]
/ohos5.0/drivers/peripheral/distributed_camera/hdi_service/src/dstream_operator/
H A Ddstream_operator.cpp582 std::vector<DCResolution> resolutionVec; in GetCameraAttr() local
610 resolutionVec.push_back(resolution); in GetCameraAttr()
612 if (!resolutionVec.empty()) { in GetCameraAttr()
613 std::sort(resolutionVec.begin(), resolutionVec.end()); in GetCameraAttr()
615 dcSupportedPreviewResolutionMap_[format] = resolutionVec; in GetCameraAttr()
617 dcSupportedVideoResolutionMap_[format] = resolutionVec; in GetCameraAttr()
619 dcSupportedPhotoResolutionMap_[format] = resolutionVec; in GetCameraAttr()
/ohos5.0/drivers/peripheral/distributed_camera/hdi_service/include/dcamera_device/
H A Ddmetadata_processor.h83 …SinkAndSrcConfig(int format, const std::string rootNode, std::vector<DCResolution> &resolutionVec);