Home
last modified time | relevance | path

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

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/hyper_graphic_manager/core/hgm_screen_manager/
H A Dhgm_screen.cpp46 auto profilePtr = GetModeViaId(activeModeId_); in GetActiveRefreshRate() local
47 if (!profilePtr) { in GetActiveRefreshRate()
52 return profilePtr->GetRate(); in GetActiveRefreshRate()
135 auto profilePtr = GetModeViaId(activeModeId_); in IfSwitchToRate() local
138 if (!profilePtr) { in IfSwitchToRate()
142 if (rate == profilePtr->GetRate() || sceneId < 0) { in IfSwitchToRate()
161 auto profilePtr = GetModeViaId(activeModeId_); in GetModeIdViaRate() local
162 if (!profilePtr) { in GetModeIdViaRate()
168 …int32_t mode = GetModeIdViaResolutionAndRate(profilePtr->GetWidth(), profilePtr->GetHeight(), rate… in GetModeIdViaRate()
/ohos5.0/foundation/multimedia/media_foundation/engine/plugin/plugins/ffmpeg_adapter/audio_encoder/
H A Dffmpeg_au_enc_config.cpp72 auto profilePtr = FindTagInMap<AudioAacProfile>(Tag::AUDIO_AAC_PROFILE, tagStore); in ConfigAacCodec() local
73 if (profilePtr != nullptr) { in ConfigAacCodec()
74 auto ffProfile = ConvAacProfileToFfmpeg(*profilePtr); in ConfigAacCodec()
/ohos5.0/foundation/multimedia/media_foundation/engine/plugin/plugins/ffmpeg_adapter/video_encoder/
H A Dffmpeg_vid_enc_config.cpp171 auto profilePtr = FindTagInMap<VideoH264Profile>(Tag::VIDEO_H264_PROFILE, tagStore); in ConfigH264Codec() local
172 if (profilePtr != nullptr) { in ConfigH264Codec()
173 auto profile = ConvH264ProfileToFfmpeg(*profilePtr); in ConfigH264Codec()
/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/camera/src/session/
H A Dcapture_session.cpp964 std::shared_ptr<Profile> profilePtr = nullptr; in CanAddOutput() local
967profilePtr = output->IsTagSetted(CaptureOutput::DYNAMIC_PROFILE) ? GetPreconfigPreviewProfile() in CanAddOutput()
971profilePtr = output->IsTagSetted(CaptureOutput::DYNAMIC_PROFILE) ? GetPreconfigPhotoProfile() in CanAddOutput()
975profilePtr = output->IsTagSetted(CaptureOutput::DYNAMIC_PROFILE) ? GetPreconfigVideoProfile() in CanAddOutput()
979 profilePtr = output->GetDepthProfile(); in CanAddOutput()
987 if (profilePtr == nullptr) { in CanAddOutput()
990 return ValidateOutputProfile(*profilePtr, outputType); in CanAddOutput()