Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/camera/src/ability/
H A Dcamera_ability.cpp238 std::optional<std::vector<float>> tempRange; in PrepareSpecMaximumValue() local
253 if (!tempRange.has_value()) { in PrepareSpecMaximumValue()
254 tempRange = range; in PrepareSpecMaximumValue()
256 float min = std::min(tempRange.value()[0], range[0]); in PrepareSpecMaximumValue()
257 float max = std::max(tempRange.value()[1], range[1]); in PrepareSpecMaximumValue()
258 tempRange = std::vector<float>{min, max}; in PrepareSpecMaximumValue()
262 zoomRatioRangeInSpec_ = tempRange.value_or(std::vector<float>{1.0, 1.0}); in PrepareSpecMaximumValue()