Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/camera/src/output/
H A Dcamera_output_capability.cpp89 std::string frameratesStr = Container2String(framerates_.begin(), framerates_.end()); in DumpVideoProfile()
96 framerates_ = framerates; in VideoProfile()
102 framerates_ = framerates; in VideoProfile()
112 if (framerates_.empty()) { in IsContains()
115 if (videoProfile.framerates_.empty()) { in IsContains()
118 return *framerates_.begin() <= *videoProfile.framerates_.begin() && in IsContains()
119 *(framerates_.end() - 1) >= *(videoProfile.framerates_.end() - 1); in IsContains()
124 return framerates_; in GetFrameRates()
179 profile_.framerates_[0] <= profile.framerates_[0] && in IsMatchVideoProfiles()
180 profile_.framerates_[1] >= profile.framerates_[1]; in IsMatchVideoProfiles()
[all …]
/ohos5.0/foundation/multimedia/camera_framework/interfaces/inner_api/native/camera/include/output/
H A Dcamera_output_capability.h136 this->framerates_ = rhs.framerates_;
143 … this->size_.height == profile.size_.height && this->framerates_[0] == profile.framerates_[0] &&
144 this->framerates_[1] == profile.framerates_[1];
156 std::vector<int32_t> framerates_ = {}; variable
/ohos5.0/foundation/multimedia/camera_framework/frameworks/js/camera_napi/src/
H A Dcamera_napi_object_types.cpp63 auto frameRateRange = Hold<CameraNapiObjFrameRateRange>(videoProfile_.framerates_); in GetCameraNapiObject()
/ohos5.0/foundation/multimedia/camera_framework/frameworks/js/camera_napi/src/input/
H A Dcamera_manager_napi.cpp966 videoProfile.framerates_.resize(2); // framerate size is 2 in CreateVideoOutputInstance()
972 { "min", &videoProfile.framerates_[0] }, in CreateVideoOutputInstance()
973 { "max", &videoProfile.framerates_[1] } in CreateVideoOutputInstance()
989 …oProfile.size_.width, videoProfile.size_.height, videoProfile.format_, videoProfile.framerates_[0], in CreateVideoOutputInstance()
990 videoProfile.framerates_[1], surfaceId.c_str()); in CreateVideoOutputInstance()
/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/ndk/impl/
H A Dcamera_manager_impl.cpp352 outVideoProfile->range.min = static_cast<uint32_t>(videoProfiles[index].framerates_[0]); in GetSupportedVideoProfiles()
353 outVideoProfile->range.max = static_cast<uint32_t>(videoProfiles[index].framerates_[1]); in GetSupportedVideoProfiles()
/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/camera/src/input/
H A Dcamera_manager.cpp1355 …if (backProfile.framerates_[minIndex] == alignFps && backProfile.framerates_[maxIndex] == alignFps… in AlignVideoFpsProfile()
1371 frontProfile.framerates_[minIndex], frontProfile.framerates_[maxIndex]); in AlignVideoFpsProfile()
/ohos5.0/foundation/multimedia/camera_framework/interfaces/inner_api/native/camera/include/session/
H A Dcapture_session.h119 for (auto& fps : videoProfile.framerates_) { in ToString()
/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/camera/test/moduletest/src/
H A Dcamera_framework_moduletest.cpp3221 wanted.video.framerates_ = {30, 30};
3291 wanted.video.framerates_ = {30, 30};
3379 wanted.video.framerates_ = {30, 30};
3467 wanted.video.framerates_ = {30, 30};
3551 wanted.video.framerates_ = {30, 30};
3663 profiles.video.framerates_ = {30, 30};
3755 profiles.video.framerates_ = {30, 30};
3841 profiles.video.framerates_ = {30, 30};
12045 wanted.video.framerates_ = {30, 30};
/ohos5.0/foundation/multimedia/camera_framework/frameworks/js/camera_napi/src/session/
H A Dcamera_session_napi.cpp3500 profile.framerates_ = rateRanges; in ParseVideoProfile()