Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/camera_framework/test/fuzztest/timelapsephotosession_fuzzer/
H A Dtime_lapse_photo_session_fuzzer.cpp367 int32_t wbValue; in Test31() local
368 s->GetManualWhiteBalance(wbValue); in Test31()
369 s->SetManualWhiteBalance(wbValue); in Test31()
/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/camera/src/session/
H A Dcapture_session.cpp5379 int32_t wbValue = 0; in SetWhiteBalanceMode() local
5466 int32_t CaptureSession::SetManualWhiteBalance(int32_t wbValue) in SetManualWhiteBalance() argument
5481 MEDIA_DEBUG_LOG("CaptureSession::SetManualWhiteBalance white balance: %{public}d", wbValue); in SetManualWhiteBalance()
5492 if (wbValue != 0 && wbValue < whiteBalanceRange[minIndex]) { in SetManualWhiteBalance()
5495 wbValue, whiteBalanceRange[minIndex]); in SetManualWhiteBalance()
5496 wbValue = whiteBalanceRange[minIndex]; in SetManualWhiteBalance()
5497 } else if (wbValue > whiteBalanceRange[maxIndex]) { in SetManualWhiteBalance()
5500 wbValue, whiteBalanceRange[maxIndex]); in SetManualWhiteBalance()
5501 wbValue = whiteBalanceRange[maxIndex]; in SetManualWhiteBalance()
5509 int32_t CaptureSession::GetManualWhiteBalance(int32_t &wbValue) in GetManualWhiteBalance() argument
[all …]
/ohos5.0/foundation/multimedia/camera_framework/interfaces/inner_api/native/camera/include/session/
H A Dcapture_session.h1623 int32_t SetManualWhiteBalance(int32_t wbValue);
1630 int32_t GetManualWhiteBalance(int32_t &wbValue);
/ohos5.0/foundation/multimedia/camera_framework/frameworks/js/camera_napi/src/session/
H A Dcamera_session_napi.cpp4068 int32_t wbValue; in GetManualWhiteBalance() local
4069 int32_t retCode = cameraSessionNapi->cameraSession_->GetManualWhiteBalance(wbValue); in GetManualWhiteBalance()
4073 napi_create_int32(env, wbValue, &result); in GetManualWhiteBalance()
4096 int32_t wbValue; in SetManualWhiteBalance() local
4097 napi_get_value_int32(env, argv[PARAM0], &wbValue); in SetManualWhiteBalance()
4099 cameraSessionNapi->cameraSession_->SetManualWhiteBalance(wbValue); in SetManualWhiteBalance()
4100 … MEDIA_INFO_LOG("ProfessionSessionNapi::SetManualWhiteBalance set wbValue:%{public}d", wbValue); in SetManualWhiteBalance()
/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/camera/test/moduletest/src/
H A Dcamera_framework_moduletest.cpp3624 int32_t wbValue; variable
3625 session->GetManualWhiteBalance(wbValue);
3626 ASSERT_EQ(wbValue, whiteBalanceRange[0]);
9264 int32_t wbValue = 0; variable
9266 intResult = camSession->SetManualWhiteBalance(wbValue);
9270 intResult = camSession->GetManualWhiteBalance(wbValue);
9304 camSession->GetManualWhiteBalance(wbValue);
9305 ASSERT_EQ(wbValue, manualWhiteBalanceRange[0]);
9316 intResult = camSession->SetManualWhiteBalance(wbValue);
9320 intResult = camSession->GetManualWhiteBalance(wbValue);