Lines Matching full:override
47 ~AudioDeviceModuleImpl() override;
50 int32_t ActiveAudioLayer(AudioLayer* audioLayer) const override;
53 int32_t RegisterAudioCallback(AudioTransport* audioCallback) override;
56 int32_t Init() override;
57 int32_t Terminate() override;
58 bool Initialized() const override;
61 int16_t PlayoutDevices() override;
62 int16_t RecordingDevices() override;
65 char guid[kAdmMaxGuidSize]) override;
68 char guid[kAdmMaxGuidSize]) override;
71 int32_t SetPlayoutDevice(uint16_t index) override;
72 int32_t SetPlayoutDevice(WindowsDeviceType device) override;
73 int32_t SetRecordingDevice(uint16_t index) override;
74 int32_t SetRecordingDevice(WindowsDeviceType device) override;
77 int32_t PlayoutIsAvailable(bool* available) override;
78 int32_t InitPlayout() override;
79 bool PlayoutIsInitialized() const override;
80 int32_t RecordingIsAvailable(bool* available) override;
81 int32_t InitRecording() override;
82 bool RecordingIsInitialized() const override;
85 int32_t StartPlayout() override;
86 int32_t StopPlayout() override;
87 bool Playing() const override;
88 int32_t StartRecording() override;
89 int32_t StopRecording() override;
90 bool Recording() const override;
93 int32_t InitSpeaker() override;
94 bool SpeakerIsInitialized() const override;
95 int32_t InitMicrophone() override;
96 bool MicrophoneIsInitialized() const override;
99 int32_t SpeakerVolumeIsAvailable(bool* available) override;
100 int32_t SetSpeakerVolume(uint32_t volume) override;
101 int32_t SpeakerVolume(uint32_t* volume) const override;
102 int32_t MaxSpeakerVolume(uint32_t* maxVolume) const override;
103 int32_t MinSpeakerVolume(uint32_t* minVolume) const override;
106 int32_t MicrophoneVolumeIsAvailable(bool* available) override;
107 int32_t SetMicrophoneVolume(uint32_t volume) override;
108 int32_t MicrophoneVolume(uint32_t* volume) const override;
109 int32_t MaxMicrophoneVolume(uint32_t* maxVolume) const override;
110 int32_t MinMicrophoneVolume(uint32_t* minVolume) const override;
113 int32_t SpeakerMuteIsAvailable(bool* available) override;
114 int32_t SetSpeakerMute(bool enable) override;
115 int32_t SpeakerMute(bool* enabled) const override;
118 int32_t MicrophoneMuteIsAvailable(bool* available) override;
119 int32_t SetMicrophoneMute(bool enable) override;
120 int32_t MicrophoneMute(bool* enabled) const override;
123 int32_t StereoPlayoutIsAvailable(bool* available) const override;
124 int32_t SetStereoPlayout(bool enable) override;
125 int32_t StereoPlayout(bool* enabled) const override;
126 int32_t StereoRecordingIsAvailable(bool* available) const override;
127 int32_t SetStereoRecording(bool enable) override;
128 int32_t StereoRecording(bool* enabled) const override;
131 int32_t PlayoutDelay(uint16_t* delayMS) const override;
133 bool BuiltInAECIsAvailable() const override;
134 int32_t EnableBuiltInAEC(bool enable) override;
135 bool BuiltInAGCIsAvailable() const override;
136 int32_t EnableBuiltInAGC(bool enable) override;
137 bool BuiltInNSIsAvailable() const override;
138 int32_t EnableBuiltInNS(bool enable) override;
141 int32_t GetPlayoutUnderrunCount() const override;
144 int GetPlayoutAudioParameters(AudioParameters* params) const override;
145 int GetRecordAudioParameters(AudioParameters* params) const override;
156 int RestartPlayoutInternally() override { return -1; } in RestartPlayoutInternally()
157 int RestartRecordingInternally() override { return -1; } in RestartRecordingInternally()
158 int SetPlayoutSampleRate(uint32_t sample_rate) override { return -1; } in SetPlayoutSampleRate()
159 int SetRecordingSampleRate(uint32_t sample_rate) override { return -1; } in SetRecordingSampleRate()