LeviLamina
Loading...
Searching...
No Matches
AudioTrack.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/AudioTrackInterface.h"
7#include "mc/external/webrtc/MediaStreamTrack.h"
8#include "mc/external/webrtc/ObserverInterface.h"
9#include "mc/external/webrtc/scoped_refptr.h"
10
11// auto generated forward declare list
12// clang-format off
13namespace webrtc { class AudioSourceInterface; }
14namespace webrtc { class AudioTrackSinkInterface; }
15// clang-format on
16
17namespace webrtc {
18
19class AudioTrack : public ::webrtc::MediaStreamTrack<::webrtc::AudioTrackInterface>,
21public:
22 // member variables
23 // NOLINTBEGIN
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
30 AudioTrack& operator=(AudioTrack const&);
31 AudioTrack(AudioTrack const&);
32 AudioTrack();
33
34public:
35 // virtual functions
36 // NOLINTBEGIN
37 // vIndex: 1
38 virtual ~AudioTrack() /*override*/;
39
40 // vIndex: 3
41 virtual ::std::string kind() const /*override*/;
42
43 // vIndex: 8
44 virtual ::webrtc::AudioSourceInterface* GetSource() const /*override*/;
45
46 // vIndex: 9
47 virtual void AddSink(::webrtc::AudioTrackSinkInterface* sink) /*override*/;
48
49 // vIndex: 10
50 virtual void RemoveSink(::webrtc::AudioTrackSinkInterface* sink) /*override*/;
51
52 // vIndex: 0
53 virtual void OnChanged() /*override*/;
54 // NOLINTEND
55
56public:
57 // member functions
58 // NOLINTBEGIN
59 MCNAPI AudioTrack(::std::string_view label, ::webrtc::scoped_refptr<::webrtc::AudioSourceInterface> const& source);
60 // NOLINTEND
61
62public:
63 // static functions
64 // NOLINTBEGIN
65 MCNAPI static ::webrtc::scoped_refptr<::webrtc::AudioTrack>
67 // NOLINTEND
68
69public:
70 // constructor thunks
71 // NOLINTBEGIN
72 MCNAPI void* $ctor(::std::string_view label, ::webrtc::scoped_refptr<::webrtc::AudioSourceInterface> const& source);
73 // NOLINTEND
74
75public:
76 // destructor thunk
77 // NOLINTBEGIN
78 MCNAPI void $dtor();
79 // NOLINTEND
80
81public:
82 // virtual function thunks
83 // NOLINTBEGIN
84 MCNAPI ::std::string $kind() const;
85
86 MCNAPI ::webrtc::AudioSourceInterface* $GetSource() const;
87
89
91
92 MCNAPI void $OnChanged();
93 // NOLINTEND
94
95public:
96 // vftables
97 // NOLINTBEGIN
98 MCNAPI static void** $vftableForNotifierInterface();
99
100 MCNAPI static void** $vftable();
101
102 MCNAPI static void** $vftableForRefCountInterface();
103 // NOLINTEND
104};
105
106} // namespace webrtc
Definition AudioTrackSinkInterface.h:7
Definition AudioTrack.h:20
MCAPI void $RemoveSink(::webrtc::AudioTrackSinkInterface *sink)
MCAPI void * $ctor(::std::string_view label, ::webrtc::scoped_refptr<::webrtc::AudioSourceInterface > const &source)
MCAPI void $AddSink(::webrtc::AudioTrackSinkInterface *sink)
MCAPI void $OnChanged()
MCAPI::webrtc::AudioSourceInterface * $GetSource() const
MCAPI void $dtor()
MCAPI::std::string $kind() const
static MCAPI ::webrtc::scoped_refptr<::webrtc::AudioTrack > Create(::std::string_view id, ::webrtc::scoped_refptr<::webrtc::AudioSourceInterface > const &source)
static MCAPI void ** $vftable()
static MCAPI void ** $vftableForNotifierInterface()
static MCAPI void ** $vftableForRefCountInterface()
MCAPI AudioTrack(::std::string_view label, ::webrtc::scoped_refptr<::webrtc::AudioSourceInterface > const &source)
Definition MediaStreamTrack.h:8
Definition ObserverInterface.h:7
Definition scoped_refptr.h:8
Definition Alias.h:14