LeviLamina
Loading...
Searching...
No Matches
AudioTrackInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/MediaStreamTrackInterface.h"
7#include "mc/external/webrtc/scoped_refptr.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace webrtc { class AudioProcessorInterface; }
12namespace webrtc { class AudioSourceInterface; }
13namespace webrtc { class AudioTrackSinkInterface; }
14// clang-format on
15
16namespace webrtc {
17
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 8
23 virtual ::webrtc::AudioSourceInterface* GetSource() const = 0;
24
25 // vIndex: 9
26 virtual void AddSink(::webrtc::AudioTrackSinkInterface*) = 0;
27
28 // vIndex: 10
29 virtual void RemoveSink(::webrtc::AudioTrackSinkInterface*) = 0;
30
31 // vIndex: 11
32 virtual bool GetSignalLevel(int*);
33
34 // vIndex: 12
35 virtual ::webrtc::scoped_refptr<::webrtc::AudioProcessorInterface> GetAudioProcessor();
36
37 // vIndex: 2
38 virtual ~AudioTrackInterface() /*override*/ = default;
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50
51 // NOLINTEND
52};
53
54} // namespace webrtc
Definition AudioTrackInterface.h:18
Definition AudioTrackSinkInterface.h:7
Definition MediaStreamTrackInterface.h:11