LeviLamina
Loading...
Searching...
No Matches
RtcpMuxFilter.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/cricket/ContentSource.h"
7
8namespace cricket {
9
10class RtcpMuxFilter {
11public:
12 // RtcpMuxFilter inner types define
13 enum class State : int {
14 Init = 0,
15 Receivedoffer = 1,
16 Sentoffer = 2,
17 Sentpranswer = 3,
18 Receivedpranswer = 4,
19 Active = 5,
20 };
21
22public:
23 // member variables
24 // NOLINTBEGIN
27 // NOLINTEND
28
29public:
30 // prevent constructor by default
31 RtcpMuxFilter& operator=(RtcpMuxFilter const&);
32 RtcpMuxFilter(RtcpMuxFilter const&);
33
34public:
35 // member functions
36 // NOLINTBEGIN
37 MCNAPI bool IsActive() const;
38
39 MCNAPI RtcpMuxFilter();
40
41 MCNAPI bool SetAnswer(bool answer_enable, ::cricket::ContentSource src);
42
43 MCNAPI bool SetOffer(bool offer_enable, ::cricket::ContentSource src);
44
45 MCNAPI bool SetProvisionalAnswer(bool answer_enable, ::cricket::ContentSource src);
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51 MCNAPI void* $ctor();
52 // NOLINTEND
53};
54
55} // namespace cricket
MCAPI bool SetProvisionalAnswer(bool answer_enable, ::cricket::ContentSource src)
MCAPI bool IsActive() const
MCAPI bool SetOffer(bool offer_enable, ::cricket::ContentSource src)
MCAPI void * $ctor()
MCAPI bool SetAnswer(bool answer_enable, ::cricket::ContentSource src)
Definition Alias.h:14