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 // vIndex: 3
45 virtual ::webrtc::AudioProcessing* audio_processing() = 0;
46
47 // vIndex: 4
48 virtual ::webrtc::AudioTransport* audio_transport() = 0;
49
50 // vIndex: 5
51 virtual void SetPlayout(bool) = 0;
52
53 // vIndex: 6
54 virtual void SetRecording(bool) = 0;
55
56 // vIndex: 7
57 virtual void SetStereoChannelSwapping(bool) = 0;
58
59 // vIndex: 2
60 virtual ~AudioState() /*override*/ = default;
61 // NOLINTEND
62
63public:
64 // destructor thunk
65 // NOLINTBEGIN
66
67 // NOLINTEND
68
69public:
70 // virtual function thunks
71 // NOLINTBEGIN
72
73 // NOLINTEND
74};
75
76} // namespace webrtc
Definition AudioState.h:16
Definition RefCountInterface.h:10
Definition Alias.h:14
Definition AudioState.h:24