forked from UnigramDev/Unigram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVoipGroupDescriptor.cpp
More file actions
78 lines (64 loc) · 1.64 KB
/
Copy pathVoipGroupDescriptor.cpp
File metadata and controls
78 lines (64 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#include "pch.h"
#include "VoipGroupDescriptor.h"
#if __has_include("VoipGroupDescriptor.g.cpp")
#include "VoipGroupDescriptor.g.cpp"
#endif
namespace winrt::Telegram::Native::Calls::implementation
{
hstring VoipGroupDescriptor::AudioInputId()
{
return m_audioInputId;
}
void VoipGroupDescriptor::AudioInputId(hstring value)
{
m_audioInputId = value;
}
hstring VoipGroupDescriptor::AudioOutputId()
{
return m_audioOutputId;
}
void VoipGroupDescriptor::AudioOutputId(hstring value)
{
m_audioOutputId = value;
}
VoipCaptureBase VoipGroupDescriptor::VideoCapture()
{
return m_videoCapture;
}
void VoipGroupDescriptor::VideoCapture(VoipCaptureBase value)
{
m_videoCapture = value;
}
VoipVideoContentType VoipGroupDescriptor::VideoContentType()
{
return m_videoContentType;
}
void VoipGroupDescriptor::VideoContentType(VoipVideoContentType value)
{
m_videoContentType = value;
}
bool VoipGroupDescriptor::IsConference()
{
return m_isConference;
}
void VoipGroupDescriptor::IsConference(bool value)
{
m_isConference = value;
}
bool VoipGroupDescriptor::IsNoiseSuppressionEnabled()
{
return m_isNoiseSuppressionEnabled;
}
void VoipGroupDescriptor::IsNoiseSuppressionEnabled(bool value)
{
m_isNoiseSuppressionEnabled = value;
}
int64_t VoipGroupDescriptor::AudioProcessId()
{
return m_audioProcessId;
}
void VoipGroupDescriptor::AudioProcessId(int64_t value)
{
m_audioProcessId = value;
}
}