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

Side by Side Diff: webrtc/modules/audio_device/linux/audio_mixer_manager_alsa_linux.h

Issue 3006803002: Removes unused APIs from the ADM (part II) (Closed)
Patch Set: nit Created 3 years, 3 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 12 matching lines...) Expand all
23 23
24 class AudioMixerManagerLinuxALSA 24 class AudioMixerManagerLinuxALSA
25 { 25 {
26 public: 26 public:
27 int32_t OpenSpeaker(char* deviceName); 27 int32_t OpenSpeaker(char* deviceName);
28 int32_t OpenMicrophone(char* deviceName); 28 int32_t OpenMicrophone(char* deviceName);
29 int32_t SetSpeakerVolume(uint32_t volume); 29 int32_t SetSpeakerVolume(uint32_t volume);
30 int32_t SpeakerVolume(uint32_t& volume) const; 30 int32_t SpeakerVolume(uint32_t& volume) const;
31 int32_t MaxSpeakerVolume(uint32_t& maxVolume) const; 31 int32_t MaxSpeakerVolume(uint32_t& maxVolume) const;
32 int32_t MinSpeakerVolume(uint32_t& minVolume) const; 32 int32_t MinSpeakerVolume(uint32_t& minVolume) const;
33 int32_t SpeakerVolumeStepSize(uint16_t& stepSize) const;
34 int32_t SpeakerVolumeIsAvailable(bool& available); 33 int32_t SpeakerVolumeIsAvailable(bool& available);
35 int32_t SpeakerMuteIsAvailable(bool& available); 34 int32_t SpeakerMuteIsAvailable(bool& available);
36 int32_t SetSpeakerMute(bool enable); 35 int32_t SetSpeakerMute(bool enable);
37 int32_t SpeakerMute(bool& enabled) const; 36 int32_t SpeakerMute(bool& enabled) const;
38 int32_t MicrophoneMuteIsAvailable(bool& available); 37 int32_t MicrophoneMuteIsAvailable(bool& available);
39 int32_t SetMicrophoneMute(bool enable); 38 int32_t SetMicrophoneMute(bool enable);
40 int32_t MicrophoneMute(bool& enabled) const; 39 int32_t MicrophoneMute(bool& enabled) const;
41 int32_t MicrophoneBoostIsAvailable(bool& available);
42 int32_t SetMicrophoneBoost(bool enable);
43 int32_t MicrophoneBoost(bool& enabled) const;
44 int32_t MicrophoneVolumeIsAvailable(bool& available); 40 int32_t MicrophoneVolumeIsAvailable(bool& available);
45 int32_t SetMicrophoneVolume(uint32_t volume); 41 int32_t SetMicrophoneVolume(uint32_t volume);
46 int32_t MicrophoneVolume(uint32_t& volume) const; 42 int32_t MicrophoneVolume(uint32_t& volume) const;
47 int32_t MaxMicrophoneVolume(uint32_t& maxVolume) const; 43 int32_t MaxMicrophoneVolume(uint32_t& maxVolume) const;
48 int32_t MinMicrophoneVolume(uint32_t& minVolume) const; 44 int32_t MinMicrophoneVolume(uint32_t& minVolume) const;
49 int32_t MicrophoneVolumeStepSize(uint16_t& stepSize) const;
50 int32_t Close(); 45 int32_t Close();
51 int32_t CloseSpeaker(); 46 int32_t CloseSpeaker();
52 int32_t CloseMicrophone(); 47 int32_t CloseMicrophone();
53 bool SpeakerIsInitialized() const; 48 bool SpeakerIsInitialized() const;
54 bool MicrophoneIsInitialized() const; 49 bool MicrophoneIsInitialized() const;
55 50
56 public: 51 public:
57 AudioMixerManagerLinuxALSA(); 52 AudioMixerManagerLinuxALSA();
58 ~AudioMixerManagerLinuxALSA(); 53 ~AudioMixerManagerLinuxALSA();
59 54
60 private: 55 private:
61 int32_t LoadMicMixerElement() const; 56 int32_t LoadMicMixerElement() const;
62 int32_t LoadSpeakerMixerElement() const; 57 int32_t LoadSpeakerMixerElement() const;
63 void GetControlName(char *controlName, char* deviceName) const; 58 void GetControlName(char *controlName, char* deviceName) const;
64 59
65 private: 60 private:
66 rtc::CriticalSection _critSect; 61 rtc::CriticalSection _critSect;
67 mutable snd_mixer_t* _outputMixerHandle; 62 mutable snd_mixer_t* _outputMixerHandle;
68 char _outputMixerStr[kAdmMaxDeviceNameSize]; 63 char _outputMixerStr[kAdmMaxDeviceNameSize];
69 mutable snd_mixer_t* _inputMixerHandle; 64 mutable snd_mixer_t* _inputMixerHandle;
70 char _inputMixerStr[kAdmMaxDeviceNameSize]; 65 char _inputMixerStr[kAdmMaxDeviceNameSize];
71 mutable snd_mixer_elem_t* _outputMixerElement; 66 mutable snd_mixer_elem_t* _outputMixerElement;
72 mutable snd_mixer_elem_t* _inputMixerElement; 67 mutable snd_mixer_elem_t* _inputMixerElement;
73 }; 68 };
74 69
75 } 70 }
76 71
77 #endif // MODULES_AUDIO_DEVICE_MAIN_SOURCE_LINUX_AUDIO_MIXER_MANAGER_ALSA_LINUX _H_ 72 #endif // MODULES_AUDIO_DEVICE_MAIN_SOURCE_LINUX_AUDIO_MIXER_MANAGER_ALSA_LINUX _H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698