Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/camera_framework/interfaces/kits/js/camera_napi/include/session/
H A Dcamera_session_napi.h198 void OnEffectSuggestionChange(EffectSuggestionType effectSuggestionType) override;
201 void OnEffectSuggestionCallback(EffectSuggestionType effectSuggestionType) const;
202 void OnEffectSuggestionCallbackAsync(EffectSuggestionType effectSuggestionType) const;
208 EffectSuggestionCallbackInfo(EffectSuggestionType effectSuggestionType, in EffectSuggestionCallbackInfo()
210 : effectSuggestionType_(effectSuggestionType), listener_(listener) {} in EffectSuggestionCallbackInfo()
/ohos5.0/foundation/multimedia/camera_framework/test/fuzztest/capturesession_fuzzer/
H A Dcapture_session_fuzzer.h80 void OnEffectSuggestionChange(EffectSuggestionType effectSuggestionType) override {} in OnEffectSuggestionChange() argument
H A Dcapture_session_fuzzer.cpp360 …EffectSuggestionType effectSuggestionType = static_cast<EffectSuggestionType>(data.ReadInt32() % m… in TestAperture() local
361 session->UpdateEffectSuggestion(effectSuggestionType, data.ReadBool()); in TestAperture()
/ohos5.0/foundation/multimedia/camera_framework/frameworks/js/camera_napi/src/session/
H A Dcamera_session_napi.cpp712 …nCallbackListener::OnEffectSuggestionCallbackAsync(EffectSuggestionType effectSuggestionType) const in OnEffectSuggestionCallbackAsync()
727 std::make_unique<EffectSuggestionCallbackInfo>(effectSuggestionType, this); in OnEffectSuggestionCallbackAsync()
745 …estionCallbackListener::OnEffectSuggestionCallback(EffectSuggestionType effectSuggestionType) const in OnEffectSuggestionCallback()
751 napi_create_int32(env_, effectSuggestionType, &result[PARAM1]); in OnEffectSuggestionCallback()
756 …fectSuggestionCallbackListener::OnEffectSuggestionChange(EffectSuggestionType effectSuggestionType) in OnEffectSuggestionChange() argument
758 …_LOG("OnEffectSuggestionChange is called, effectSuggestionType: %{public}d", effectSuggestionType); in OnEffectSuggestionChange()
759 OnEffectSuggestionCallbackAsync(effectSuggestionType); in OnEffectSuggestionChange()
3838 auto effectSuggestionType = (EffectSuggestionType)value; in UpdateEffectSuggestion() local
3842 effectSuggestionType, enabled); in UpdateEffectSuggestion()
3844 …retCode = cameraSessionNapi->cameraSession_->UpdateEffectSuggestion(effectSuggestionType, enabled); in UpdateEffectSuggestion()
/ohos5.0/foundation/multimedia/camera_framework/interfaces/inner_api/native/camera/include/session/
H A Dcapture_session.h321 virtual void OnEffectSuggestionChange(EffectSuggestionType effectSuggestionType) = 0;
1477 int32_t UpdateEffectSuggestion(EffectSuggestionType effectSuggestionType, bool isEnable);
/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/camera/src/session/
H A Dcapture_session.cpp5266 int32_t CaptureSession::UpdateEffectSuggestion(EffectSuggestionType effectSuggestionType, bool isEn… in UpdateEffectSuggestion() argument
5274 auto itr = fwkEffectSuggestionTypeMap_.find(effectSuggestionType); in UpdateEffectSuggestion()