forked from finos/SymphonyMediaBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRtcDescriptors.h
144 lines (123 loc) · 2.79 KB
/
RtcDescriptors.h
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#pragma once
#include "api/SimulcastGroup.h"
#include "transport/dtls/SrtpProfiles.h"
#include "utils/Optional.h"
#include <cstdint>
#include <string>
#include <vector>
namespace api
{
enum SrtpMode
{
Disabled = 0,
DTLS,
SDES
};
SrtpMode stringToSrtpMode(const std::string& s);
std::string toString(SrtpMode mode);
struct Candidate
{
uint32_t generation;
uint32_t component;
std::string protocol;
uint32_t port;
std::string ip;
utils::Optional<uint32_t> relPort;
utils::Optional<std::string> relAddr;
std::string foundation;
uint32_t priority;
std::string type;
uint32_t network;
};
struct Connection
{
uint32_t port;
std::string ip;
};
struct Ice
{
std::string ufrag;
std::string pwd;
std::vector<Candidate> candidates;
};
struct Dtls
{
std::string setup;
std::string type;
std::string hash;
bool isClient() const { return setup.compare("active") == 0; }
};
struct Transport
{
bool rtcpMux;
utils::Optional<Ice> ice;
utils::Optional<Dtls> dtls;
utils::Optional<Connection> connection;
std::vector<srtp::AesKey> sdesKeys;
srtp::Mode getSrtpMode() const
{
if (dtls.isSet())
{
return srtp::Mode::DTLS;
}
else if (!sdesKeys.empty())
{
return srtp::Mode::SDES;
}
else
{
return srtp::Mode::NULL_CIPHER;
}
}
};
struct VideoStream
{
static const char* slidesContent;
static const char* videoContent;
std::string id;
api::SimulcastGroup sources;
std::string content;
bool isSlides() const { return 0 == content.compare(slidesContent); }
};
struct PayloadType
{
uint32_t id;
std::string name;
uint32_t clockRate;
utils::Optional<uint32_t> channels;
std::vector<std::pair<std::string, std::string>> parameters;
std::vector<std::pair<std::string, utils::Optional<std::string>>> rtcpFeedbacks;
};
struct Audio
{
utils::Optional<Transport> transport;
std::vector<uint32_t> ssrcs;
std::vector<PayloadType> payloadTypes;
std::vector<std::pair<uint32_t, std::string>> rtpHeaderExtensions;
};
struct Video
{
utils::Optional<Transport> transport;
std::vector<uint32_t> getSsrcs() const
{
std::vector<uint32_t> ssrcs;
for (auto& stream : streams)
{
for (auto& level : stream.sources)
{
ssrcs.push_back(level.main);
ssrcs.push_back(level.feedback);
}
}
return ssrcs;
}
std::vector<VideoStream> streams;
std::vector<PayloadType> payloadTypes;
std::vector<std::pair<uint32_t, std::string>> rtpHeaderExtensions;
utils::Optional<std::vector<uint32_t>> ssrcWhitelist;
};
struct Data
{
uint32_t port;
};
} // namespace api