Home
last modified time | relevance | path

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

/hardware/interfaces/audio/aidl/default/usb/
DStreamUsb.cpp103 ndk::ScopedAStatus StreamOutUsb::setHwVolume(const std::vector<float>& in_channelVolumes) { in setHwVolume() argument
105 RETURN_STATUS_IF_ERROR(setHwVolumeImpl(in_channelVolumes)); in setHwVolume()
111 deviceProfile->card, in_channelVolumes); in setHwVolume()
/hardware/interfaces/audio/aidl/default/primary/
DStreamPrimary.cpp233 ndk::ScopedAStatus StreamOutPrimary::setHwVolume(const std::vector<float>& in_channelVolumes) { in setHwVolume() argument
235 LOG(DEBUG) << __func__ << ": volumes " << ::android::internal::ToString(in_channelVolumes); in setHwVolume()
239 RETURN_STATUS_IF_ERROR(setHwVolumeImpl(in_channelVolumes)); in setHwVolume()
240 if (auto status = primary::PrimaryMixer::getInstance().setVolumes(in_channelVolumes); in setHwVolume()
/hardware/interfaces/audio/aidl/default/include/core-impl/
DStreamUsb.h73 ndk::ScopedAStatus setHwVolume(const std::vector<float>& in_channelVolumes) override;
DStreamPrimary.h89 ndk::ScopedAStatus setHwVolume(const std::vector<float>& in_channelVolumes) override;
DStream.h521 ndk::ScopedAStatus setHwVolume(const std::vector<float>& in_channelVolumes) override;
556 ndk::ScopedAStatus setHwVolumeImpl(const std::vector<float>& in_channelVolumes);
/hardware/interfaces/audio/aidl/default/
DStream.cpp963 ndk::ScopedAStatus StreamOut::setHwVolume(const std::vector<float>& in_channelVolumes) { in setHwVolume() argument
964 LOG(DEBUG) << __func__ << ": gains " << ::android::internal::ToString(in_channelVolumes); in setHwVolume()
1030 const std::vector<float>& in_channelVolumes) { in setHwVolumeImpl() argument
1031 LOG(DEBUG) << __func__ << ": volumes " << ::android::internal::ToString(in_channelVolumes); in setHwVolumeImpl()
1032 if (in_channelVolumes.size() != mChannelCount) { in setHwVolumeImpl()
1037 for (float volume : in_channelVolumes) { in setHwVolumeImpl()
1043 mHwVolumes = in_channelVolumes; in setHwVolumeImpl()