Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/player_framework/services/services/sa_media/ipc/
H A Drecorder_profiles_parcel.cpp35 (void)parcel.WriteString(profileCapabilityData.recorderProfile.audioCodec); in MarshallingRecorderProfilesData()
36 (void)parcel.WriteString(profileCapabilityData.recorderProfile.videoCodec); in MarshallingRecorderProfilesData()
59 (void)parcel.WriteInt32(profileCapabilityData.recorderProfile.audioBitrate); in MarshallingRecorderProfilesData()
62 (void)parcel.WriteInt32(profileCapabilityData.recorderProfile.durationTime); in MarshallingRecorderProfilesData()
104 profileCapabilityData.recorderProfile.audioCodec = parcel.ReadString(); in UnmarshallingRecorderProfilesData()
105 profileCapabilityData.recorderProfile.videoCodec = parcel.ReadString(); in UnmarshallingRecorderProfilesData()
128 profileCapabilityData.recorderProfile.audioBitrate = parcel.ReadInt32(); in UnmarshallingRecorderProfilesData()
129 profileCapabilityData.recorderProfile.audioChannels = parcel.ReadInt32(); in UnmarshallingRecorderProfilesData()
131 profileCapabilityData.recorderProfile.durationTime = parcel.ReadInt32(); in UnmarshallingRecorderProfilesData()
132 profileCapabilityData.recorderProfile.qualityLevel = parcel.ReadInt32(); in UnmarshallingRecorderProfilesData()
[all …]
/ohos5.0/foundation/multimedia/player_framework/services/services/recorder_profiles/server/
H A Drecorder_profiles_server.cpp68 … if ((sourceId == iter->sourceId) && (qualityLevel == iter->recorderProfile.qualityLevel)) { in HasVideoRecorderProfile()
84 … if ((sourceId == iter->sourceId) && (qualityLevel == iter->recorderProfile.qualityLevel)) { in GetVideoRecorderProfileInfo()
131 …if ((profile.recorderProfile.containerFormatType == compareProfile.recorderProfile.containerFormat… in CompareProfile()
132 (profile.recorderProfile.audioCodec == compareProfile.recorderProfile.audioCodec) && in CompareProfile()
133 (profile.recorderProfile.audioBitrate == compareProfile.recorderProfile.audioBitrate) && in CompareProfile()
134 … (profile.recorderProfile.audioSampleRate == compareProfile.recorderProfile.audioSampleRate) && in CompareProfile()
135 (profile.recorderProfile.audioChannels == compareProfile.recorderProfile.audioChannels)) { in CompareProfile()
/ohos5.0/foundation/multimedia/player_framework/frameworks/native/recorder_profiles/
H A Drecorder_profiles_impl.cpp69 profileData.recorderProfile.containerFormatType = profile.containerFormatType; in IsAudioRecorderConfigSupported()
70 profileData.recorderProfile.audioCodec = profile.audioCodec; in IsAudioRecorderConfigSupported()
71 profileData.recorderProfile.audioBitrate = profile.audioBitrate; in IsAudioRecorderConfigSupported()
72 profileData.recorderProfile.audioSampleRate = profile.audioSampleRate; in IsAudioRecorderConfigSupported()
73 profileData.recorderProfile.audioChannels = profile.audioChannels; in IsAudioRecorderConfigSupported()
118 std::make_shared<VideoRecorderProfile>(capability.recorderProfile); in GetVideoRecorderProfile()
/ohos5.0/foundation/multimedia/player_framework/services/engine/common/recorder_profiles/
H A Drecorder_profiles_xml_parser.cpp501 …{"format", data.recorderProfile.containerFormatType}, {"codecMime", data.recorderProfile.videoCode… in SetVideoRecorderProfiles()
504 … {"duration", data.recorderProfile.durationTime}, {"bitrate", data.recorderProfile.videoBitrate}, in SetVideoRecorderProfiles()
505 …{"width", data.recorderProfile.videoFrameWidth}, {"height", data.recorderProfile.videoFrameHeight}, in SetVideoRecorderProfiles()
506 …{"frameRate", data.recorderProfile.videoFrameRate}, {"quality", data.recorderProfile.qualityLevel}… in SetVideoRecorderProfiles()
526 …{"format", data.recorderProfile.containerFormatType}, {"codecMime", data.recorderProfile.audioCode… in SetAudioRecorderProfiles()
529 …{"bitrate", data.recorderProfile.audioBitrate}, {"sampleRate", data.recorderProfile.audioSampleRat… in SetAudioRecorderProfiles()
530 {"channels", data.recorderProfile.audioChannels}}; in SetAudioRecorderProfiles()
/ohos5.0/foundation/multimedia/player_framework/services/include/
H A Di_recorder_profiles_service.h42 VideoRecorderProfile recorderProfile; member