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 virtual ~AudioTrack() /*override*/;
38
39 virtual ::std::string kind() const /*override*/;
40
41 virtual ::webrtc::AudioSourceInterface* GetSource() const /*override*/;
42
43 virtual void AddSink(::webrtc::AudioTrackSinkInterface* sink) /*override*/;
44
45 virtual void RemoveSink(::webrtc::AudioTrackSinkInterface* sink) /*override*/;
46
47 virtual void OnChanged() /*override*/;
48 // NOLINTEND
49
50public:
51 // static functions
52 // NOLINTBEGIN
53 MCNAPI static ::webrtc::scoped_refptr<::webrtc::AudioTrack>
55 // NOLINTEND
56
57public:
58 // destructor thunk
59 // NOLINTBEGIN
60 MCNAPI void $dtor();
61 // NOLINTEND
62
63public:
64 // virtual function thunks
65 // NOLINTBEGIN
66 MCNAPI ::std::string $kind() const;
67
68 MCNAPI ::webrtc::AudioSourceInterface* $GetSource() const;
69
71
73
74 MCNAPI void $OnChanged();
75
76
77 // NOLINTEND
78
79public:
80 // vftables
81 // NOLINTBEGIN
82 MCNAPI static void** $vftableForNotifierInterface();
83
84 MCNAPI static void** $vftable();
85
86 MCNAPI static void** $vftableForRefCountInterface();
87 // NOLINTEND
88};
89
90} // namespace webrtc
Definition AudioSourceInterface.h:16
Definition AudioTrackSinkInterface.h:7
MCAPI void $RemoveSink(::webrtc::AudioTrackSinkInterface *sink)
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()
Definition MediaStreamTrack.h:8
Definition ObserverInterface.h:7
Definition scoped_refptr.h:8
Definition Alias.h:14