Home
last modified time | relevance | path

Searched refs:targetZoomRatio (Results 1 - 11 of 11) sorted by relevance

/foundation/multimedia/camera_framework/services/camera_service/binder/client/include/
H A Dhcapture_session_proxy.h56 float targetZoomRatio, float &duration) override;
/foundation/multimedia/camera_framework/services/camera_service/binder/base/include/
H A Dicapture_session.h68 float targetZoomRatio, float &duration) = 0;
/foundation/multimedia/camera_framework/services/camera_service/binder/server/src/
H A Dhcapture_session_stub.cpp239 float targetZoomRatio = data.ReadFloat(); in HandleSetSmoothZoom() local
241 int32_t ret = SetSmoothZoom(smoothZoomType, operationMode, targetZoomRatio, duration); in HandleSetSmoothZoom()
/foundation/multimedia/camera_framework/services/camera_service/binder/client/src/
H A Dhcapture_session_proxy.cpp298 int32_t HCaptureSessionProxy::SetSmoothZoom(int32_t mode, int32_t operationMode, float targetZoomRatio, float &duration) in SetSmoothZoom() argument
307 data.WriteFloat(targetZoomRatio); in SetSmoothZoom()
/foundation/multimedia/camera_framework/test/fuzztest/capturesession_fuzzer/
H A Dcapture_session_fuzzer.cpp220 float targetZoomRatio = data.ReadFloat(); in TestZoom() local
222 session->SetSmoothZoom(targetZoomRatio, smoothZoomType); in TestZoom()
/foundation/multimedia/camera_framework/services/camera_service/src/
H A Dhcapture_session.cpp1189 int32_t smoothZoomType, int32_t operationMode, float targetZoomRatio, float& duration) in SetSmoothZoom()
1203 targetZoomRatio = targetZoomRatio * ZOOM_RATIO_MULTIPLE; in SetSmoothZoom()
1204 int indexAdded = targetZoomRatio > currentZoomRatio ? 1 : 2; in SetSmoothZoom()
1206 auto array = zoomAlgorithm->GetZoomArray(currentZoomRatio, targetZoomRatio, frameIntervalMs); in SetSmoothZoom()
1210 if ((crossZoom - currentZoomRatio) * (crossZoom - targetZoomRatio) > 0) { in SetSmoothZoom()
1215 currentZoomRatio > targetZoomRatio) { in SetSmoothZoom()
1188 SetSmoothZoom( int32_t smoothZoomType, int32_t operationMode, float targetZoomRatio, float& duration) SetSmoothZoom() argument
/foundation/multimedia/camera_framework/services/camera_service/include/
H A Dhcapture_session.h239 int32_t smoothZoomType, int32_t operationMode, float targetZoomRatio, float& duration) override;
/foundation/multimedia/camera_framework/frameworks/native/camera/src/session/
H A Dcapture_session.cpp2700 int32_t CaptureSession::SetSmoothZoom(float targetZoomRatio, uint32_t smoothZoomType) in SetSmoothZoom() argument
2713 if (targetZoomRatio < zoomRange[minIndex]) { in SetSmoothZoom()
2715 targetZoomRatio, zoomRange[minIndex]); in SetSmoothZoom()
2716 targetZoomRatio = zoomRange[minIndex]; in SetSmoothZoom()
2717 } else if (targetZoomRatio > zoomRange[maxIndex]) { in SetSmoothZoom()
2719 targetZoomRatio, zoomRange[maxIndex]); in SetSmoothZoom()
2720 targetZoomRatio = zoomRange[maxIndex]; in SetSmoothZoom()
2727 MEDIA_INFO_LOG("CaptureSession::SetSmoothZoom Zoom ratio: %{public}f", targetZoomRatio); in SetSmoothZoom()
2728 errCode = captureSession->SetSmoothZoom(smoothZoomType, GetMode(), targetZoomRatio, duration); in SetSmoothZoom()
2735 changedMetadata->addEntry(OHOS_CONTROL_SMOOTH_ZOOM_RATIOS, &targetZoomRatio, in SetSmoothZoom()
[all...]
/foundation/multimedia/camera_framework/interfaces/inner_api/native/camera/include/session/
H A Dcapture_session.h962 int32_t SetSmoothZoom(float targetZoomRatio, uint32_t smoothZoomType);
/foundation/multimedia/camera_framework/frameworks/js/camera_napi/src/session/
H A Dcamera_session_napi.cpp2373 double targetZoomRatio; in SetSmoothZoom() local
2375 napi_get_value_double(env, argv[PARAM0], &targetZoomRatio); in SetSmoothZoom()
2377 cameraSessionNapi->cameraSession_->SetSmoothZoom((float)targetZoomRatio, smoothZoomType); in SetSmoothZoom()
/foundation/multimedia/camera_framework/frameworks/native/camera/test/unittest/src/v1_1/
H A Dcamera_framework_unittest.cpp6704 float targetZoomRatio = 0; in HWTEST_F() local
6707 targetZoomRatio, duration), 11); in HWTEST_F()

Completed in 36 milliseconds