LeviLamina
Loading...
Searching...
No Matches
AudioState.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/RefCountInterface.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace webrtc { class AudioProcessing; }
11namespace webrtc { class AudioTransport; }
12// clang-format on
13
14namespace webrtc {
15
17public:
18 // AudioState inner types declare
19 // clang-format off
20 struct Config;
21 // clang-format on
22
23 // AudioState inner types define
24 struct Config {
25 public:
26 // member variables
27 // NOLINTBEGIN
32 // NOLINTEND
33
34 public:
35 // prevent constructor by default
36 Config& operator=(Config const&);
37 Config(Config const&);
38 Config();
39 };
40
41public:
42 // virtual functions
43 // NOLINTBEGIN
44 virtual ::webrtc::AudioProcessing* audio_processing() = 0;
45
46 virtual ::webrtc::AudioTransport* audio_transport() = 0;
47
48 virtual void SetPlayout(bool) = 0;
49
50 virtual void SetRecording(bool) = 0;
51
52 virtual void SetStereoChannelSwapping(bool) = 0;
53
54 virtual ~AudioState() /*override*/ = default;
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60
61 // NOLINTEND
62};
63
64} // namespace webrtc
Definition AudioProcessing.h:19
Definition AudioState.h:16
Definition AudioTransport.h:7
Definition RefCountInterface.h:10
Definition Alias.h:14
Definition AudioState.h:24