Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/av_codec/test/unittest/codeclist_test/
H A Dcaps_unit_test.cpp158 videoCodecCaps = videoCaps->GetCodecInfo(); in CheckVideoCaps()
163 CheckAVDecAVC(videoCaps); in CheckVideoCaps()
165 CheckAVEncAVC(videoCaps); in CheckVideoCaps()
195 EXPECT_EQ(0, videoCaps->GetSupportedLevels().size()); in CheckAVDecH264()
197 EXPECT_EQ(true, videoCaps->IsSizeSupported(videoCaps->GetSupportedWidth().minVal, in CheckAVDecH264()
230 EXPECT_EQ(false, videoCaps->IsSizeSupported(videoCaps->GetSupportedWidth().minVal - 1, in CheckAVDecH263()
263 EXPECT_EQ(0, videoCaps->IsSizeAndRateSupported(videoCaps->GetSupportedWidth().minVal, in CheckAVDecMpeg2Video()
266 EXPECT_EQ(false, videoCaps->IsSizeAndRateSupported(videoCaps->GetSupportedWidth().minVal - 1, in CheckAVDecMpeg2Video()
300 EXPECT_EQ(false, videoCaps->IsSizeAndRateSupported(videoCaps->GetSupportedWidth().minVal, in CheckAVDecMpeg4()
334 EXPECT_EQ(false, videoCaps->IsSizeAndRateSupported(videoCaps->GetSupportedWidth().minVal, in CheckAVDecAVC()
[all …]
H A Dcaps_unit_test.h32 void CheckAVDecH264(const std::shared_ptr<VideoCaps> &videoCaps) const;
33 void CheckAVDecH263(const std::shared_ptr<VideoCaps> &videoCaps) const;
34 void CheckAVDecMpeg2Video(const std::shared_ptr<VideoCaps> &videoCaps) const;
35 void CheckAVDecMpeg4(const std::shared_ptr<VideoCaps> &videoCaps) const;
36 void CheckAVDecAVC(const std::shared_ptr<VideoCaps> &videoCaps) const;
37 void CheckAVEncAVC(const std::shared_ptr<VideoCaps> &videoCaps) const;
38 void CheckAVEncMpeg4(const std::shared_ptr<VideoCaps> &videoCaps) const;
39 void CheckVideoCaps(const std::shared_ptr<VideoCaps> &videoCaps) const;
/ohos5.0/foundation/multimedia/player_framework/services/services/sa_media/ipc/
H A Drecorder_profiles_parcel.cpp29 (void)parcel.WriteString(profileCapabilityData.videoCaps.containerFormatType); in MarshallingRecorderProfilesData()
33 (void)parcel.WriteString(profileCapabilityData.videoCaps.audioEncoderMime); in MarshallingRecorderProfilesData()
34 (void)parcel.WriteString(profileCapabilityData.videoCaps.videoEncoderMime); in MarshallingRecorderProfilesData()
98 profileCapabilityData.videoCaps.containerFormatType = parcel.ReadString(); in UnmarshallingRecorderProfilesData()
102 profileCapabilityData.videoCaps.audioEncoderMime = parcel.ReadString(); in UnmarshallingRecorderProfilesData()
103 profileCapabilityData.videoCaps.videoEncoderMime = parcel.ReadString(); in UnmarshallingRecorderProfilesData()
120 profileCapabilityData.videoCaps.videoWidthRange.minVal = parcel.ReadInt32(); in UnmarshallingRecorderProfilesData()
121 profileCapabilityData.videoCaps.videoWidthRange.maxVal = parcel.ReadInt32(); in UnmarshallingRecorderProfilesData()
122 profileCapabilityData.videoCaps.videoHeightRange.minVal = parcel.ReadInt32(); in UnmarshallingRecorderProfilesData()
123 profileCapabilityData.videoCaps.videoHeightRange.maxVal = parcel.ReadInt32(); in UnmarshallingRecorderProfilesData()
[all …]
/ohos5.0/foundation/multimedia/player_framework/services/engine/common/recorder_profiles/
H A Drecorder_profiles_xml_parser.cpp261 {"codecMime", data.videoCaps.videoEncoderMime}}; in SetVideoRecorderCaps()
264 {"bitrate", data.videoCaps.videoBitrateRange}, {"width", data.videoCaps.videoWidthRange}, in SetVideoRecorderCaps()
265 … {"height", data.videoCaps.videoHeightRange}, {"frameRate", data.videoCaps.videoFramerateRange}}; in SetVideoRecorderCaps()
331 (*itVideo).videoCaps.containerFormatType = formatType; in PackageVideoRecorderCaps()
333 … CONTAINER_VIDEOCAPS_VIDEO_MAP.at(formatType).end(), (*itVideo).videoCaps.videoEncoderMime); in PackageVideoRecorderCaps()
348 videoData.videoCaps.audioEncoderMime = (*itAudio).audioCaps.mimeType; in PaddingVideoCapsByAudioCaps()
349 videoData.videoCaps.audioBitrateRange = (*itAudio).audioCaps.bitrate; in PaddingVideoCapsByAudioCaps()
350 videoData.videoCaps.audioSampleRates = (*itAudio).audioCaps.sampleRate; in PaddingVideoCapsByAudioCaps()
351 videoData.videoCaps.audioChannelRange = (*itAudio).audioCaps.channels; in PaddingVideoCapsByAudioCaps()
/ohos5.0/foundation/multimedia/player_framework/services/include/
H A Di_recorder_profiles_service.h40 VideoRecorderCaps videoCaps; member
/ohos5.0/foundation/multimedia/player_framework/frameworks/native/recorder_profiles/
H A Drecorder_profiles_impl.cpp104 …_ptr<VideoRecorderCaps> videoRecorderCaps = std::make_shared<VideoRecorderCaps>((*iter).videoCaps); in GetVideoRecorderCaps()