Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(846)

Unified Diff: webrtc/modules/audio_device/linux/audio_device_alsa_linux.cc

Issue 3006793002: Removes unused WaveOut APIs from ADM (Closed)
Patch Set: Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_device/linux/audio_device_alsa_linux.cc
diff --git a/webrtc/modules/audio_device/linux/audio_device_alsa_linux.cc b/webrtc/modules/audio_device/linux/audio_device_alsa_linux.cc
index ffa7dc5fdf34d31e312b3a3d58e526befa1c0309..cd134666988f0dcb170b0d7b7505c7903ea31e05 100644
--- a/webrtc/modules/audio_device/linux/audio_device_alsa_linux.cc
+++ b/webrtc/modules/audio_device/linux/audio_device_alsa_linux.cc
@@ -321,24 +321,6 @@ int32_t AudioDeviceLinuxALSA::SpeakerVolume(uint32_t& volume) const
return 0;
}
-
-int32_t AudioDeviceLinuxALSA::SetWaveOutVolume(uint16_t volumeLeft,
- uint16_t volumeRight)
-{
-
- LOG(LS_WARNING) << "API call not supported on this platform";
- return -1;
-}
-
-int32_t AudioDeviceLinuxALSA::WaveOutVolume(
- uint16_t& /*volumeLeft*/,
- uint16_t& /*volumeRight*/) const
-{
-
- LOG(LS_WARNING) << "API call not supported on this platform";
- return -1;
-}
-
int32_t AudioDeviceLinuxALSA::MaxSpeakerVolume(
uint32_t& maxVolume) const
{

Powered by Google App Engine
This is Rietveld 408576698