blob: 023c7b1efdd776341f9ef0cebea18ad32470aafd [file] [log] [blame]
solenberg566ef242015-11-06 15:34:49 -08001/*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef AUDIO_AUDIO_STATE_H_
12#define AUDIO_AUDIO_STATE_H_
solenberg566ef242015-11-06 15:34:49 -080013
henrika5f6bf242017-11-01 11:06:56 +010014#include <memory>
15
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020016#include "audio/audio_transport_proxy.h"
henrika5f6bf242017-11-01 11:06:56 +010017#include "audio/null_audio_poller.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020018#include "audio/scoped_voe_interface.h"
19#include "call/audio_state.h"
20#include "rtc_base/constructormagic.h"
21#include "rtc_base/criticalsection.h"
Niels Möller6f72f562017-10-19 13:15:17 +020022#include "rtc_base/refcount.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020023#include "rtc_base/thread_checker.h"
24#include "voice_engine/include/voe_base.h"
solenberg566ef242015-11-06 15:34:49 -080025
26namespace webrtc {
27namespace internal {
28
solenbergfc3a2e32017-09-26 09:35:01 -070029class AudioState final : public webrtc::AudioState {
solenberg566ef242015-11-06 15:34:49 -080030 public:
31 explicit AudioState(const AudioState::Config& config);
32 ~AudioState() override;
33
peaha9cc40b2017-06-29 08:32:09 -070034 AudioProcessing* audio_processing() override {
peahe67bedb2017-07-07 04:25:11 -070035 RTC_DCHECK(config_.audio_processing);
36 return config_.audio_processing.get();
peaha9cc40b2017-06-29 08:32:09 -070037 }
aleloidd310712016-11-17 06:28:59 -080038
henrika5f6bf242017-11-01 11:06:56 +010039 void SetPlayout(bool enabled) override;
40 void SetRecording(bool enabled) override;
41
peaha9cc40b2017-06-29 08:32:09 -070042 VoiceEngine* voice_engine();
aleloidd310712016-11-17 06:28:59 -080043 rtc::scoped_refptr<AudioMixer> mixer();
solenberg566ef242015-11-06 15:34:49 -080044 bool typing_noise_detected() const;
45
46 private:
47 // rtc::RefCountInterface implementation.
Niels Möller6f72f562017-10-19 13:15:17 +020048 void AddRef() const override;
49 rtc::RefCountReleaseStatus Release() const override;
solenberg566ef242015-11-06 15:34:49 -080050
solenberg566ef242015-11-06 15:34:49 -080051 rtc::ThreadChecker thread_checker_;
52 rtc::ThreadChecker process_thread_checker_;
53 const webrtc::AudioState::Config config_;
54
55 // We hold one interface pointer to the VoE to make sure it is kept alive.
56 ScopedVoEInterface<VoEBase> voe_base_;
57
solenberg566ef242015-11-06 15:34:49 -080058 // Reference count; implementation copied from rtc::RefCountedObject.
Niels Möller9155e492017-10-23 11:22:30 +020059 // TODO(nisse): Use RefCountedObject or RefCountedBase instead.
solenberg566ef242015-11-06 15:34:49 -080060 mutable volatile int ref_count_ = 0;
61
aleloidd310712016-11-17 06:28:59 -080062 // Transports mixed audio from the mixer to the audio device and
63 // recorded audio to the VoE AudioTransport.
64 AudioTransportProxy audio_transport_proxy_;
65
henrika5f6bf242017-11-01 11:06:56 +010066 // Null audio poller is used to continue polling the audio streams if audio
67 // playout is disabled so that audio processing still happens and the audio
68 // stats are still updated.
69 std::unique_ptr<NullAudioPoller> null_audio_poller_;
70
solenberg566ef242015-11-06 15:34:49 -080071 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioState);
72};
73} // namespace internal
74} // namespace webrtc
75
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020076#endif // AUDIO_AUDIO_STATE_H_