LeviLamina
Loading...
Searching...
No Matches
RemoteAudioSource.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/AudioSinkInterface.h"
7#include "mc/external/webrtc/MediaSourceInterface.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace cricket { class VoiceMediaReceiveChannelInterface; }
12namespace webrtc { class TaskQueueBase; }
13// clang-format on
14
15namespace webrtc {
16
18public:
19 // RemoteAudioSource inner types define
20 enum class OnAudioChannelGoneAction : uint {};
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCAPI void OnAudioChannelGone();
26
27 MCAPI void OnData(::webrtc::AudioSinkInterface::Data const&);
28
29 MCAPI RemoteAudioSource(::webrtc::TaskQueueBase*, ::webrtc::RemoteAudioSource::OnAudioChannelGoneAction);
30
31 MCAPI void SetState(::webrtc::MediaSourceInterface::SourceState);
32
33 MCAPI void Start(::cricket::VoiceMediaReceiveChannelInterface*, ::std::optional<uint>);
34
35 MCAPI void Stop(::cricket::VoiceMediaReceiveChannelInterface*, ::std::optional<uint>);
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41 MCAPI void* $ctor(::webrtc::TaskQueueBase*, ::webrtc::RemoteAudioSource::OnAudioChannelGoneAction);
42 // NOLINTEND
43
44public:
45 // vftables
46 // NOLINTBEGIN
47 MCAPI static void** $vftableForNotifierInterface();
48
49 MCAPI static void** $vftableForRefCountInterface();
50 // NOLINTEND
51};
52
53} // namespace webrtc
Definition VoiceMediaReceiveChannelInterface.h:19
Definition RemoteAudioSource.h:17
Definition TaskQueueBase.h:16
Definition AudioSinkInterface.h:15