-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSdpStructures.h
165 lines (141 loc) · 4.81 KB
/
SdpStructures.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#ifndef SDPSTRUCTURES_H
#define SDPSTRUCTURES_H
#include "QtNetwork/qhostaddress.h"
#include <QObject>
struct SdpOrigin
{
QString username;
QString sessId;
QString sessVersion;
QString nettype;
QString addrtype;
QString unicastAddress;
};
struct SdpConnectionData
{
QString nettype;
QString addrtype;
QHostAddress connectionAddress;
qint16 connectionTtl;
};
struct SdpAttributes
{
QString attribute;
QString value;
};
struct SdpSessionOption
{
QString iSessionInformation;//* (session information);
QString uUriOfDescription; //* (URI of description); ONLY STRING,NO FUNCTION
QString eEmailAddress; //* (email address); ONLY STRING,NO FUNCTION
QString pPhoneNumber; //* (phone number); ONLY STRING,NO FUNCTION
QVector<SdpConnectionData> cConnectionInformation; //* (connection information -- not required if included in all media)
QString bBandwidth; //* (zero or more bandwidth information lines) ONLY STRING,NO FUNCTION
QString zTimeZone; //* (time zone adjustments) ONLY STRING,NO FUNCTION
QString kEncryptionKey; //* (encryption key) ONLY STRING,NO FUNCTION
QVector<SdpAttributes> aAttribute; //* (zero or more session attribute lines)
};
struct SdpTimeing
{
qint64 startTime;
qint64 stopTime;
};
struct SdpMediaType //currently "audio", "video", "text", "application", and "message"
{
enum ContentType {
Audio,
Video,
Text,
Application,
Message
};
QString contentTypeString;
SdpMediaType() : contentTypeString("audio") {};
SdpMediaType(ContentType type) {
switch (type) {
case Audio:
contentTypeString = "audio";
break;
case Video:
contentTypeString = "video";
break;
case Text:
contentTypeString = "text";
break;
case Application:
contentTypeString = "application";
break;
case Message:
contentTypeString = "message";
break;
default:
contentTypeString = "";
break;
}
}
bool isValidType() const {
return contentTypeString == "audio" ||
contentTypeString == "video" ||
contentTypeString == "text" ||
contentTypeString == "application" ||
contentTypeString == "message";
}
};
struct SdpMediaTransportProtocol
{
enum ContentProtocol {
UDP,
RTPAVP,
RTPSAVP
};
QString contentTypeString;
SdpMediaTransportProtocol() : contentTypeString("RTP/AVP") {};
SdpMediaTransportProtocol(ContentProtocol type) {
switch (type) {
case UDP:
contentTypeString = "udp";
break;
case RTPAVP:
contentTypeString = "RTP/AVP";
break;
case RTPSAVP:
contentTypeString = "RTP/SAVP";
break;
default:
contentTypeString = "";
break;
}
}
bool isValidProtocol() const {
return contentTypeString == "udp" ||
contentTypeString == "RTP/AVP" ||
contentTypeString == "RTP/SAVP";
}
};
struct SdpMedia
{
SdpMediaType mediaType;
quint16 port;
SdpMediaTransportProtocol transportProtocol;
QString fmt;//payload number in ST2110
};
struct SdpMediaOption
{
QString iMediaTitle; //* (media title)
QVector<SdpConnectionData> cConnectionInformation; //(connection information -- optional if included at session level)
QString bBandwidth; //* (zero or more bandwidth information lines) ONLY STRING,NO FUNCTION
QString kEncryptionKey; //* (encryption key) ONLY STRING,NO FUNCTION
QVector<SdpAttributes> aAttribute; //* (zero or more session attribute lines)
};
struct SDP
{
int version; //(protocol version)
SdpOrigin origin; //(originator and session identifier)
QString sessionName; //(session name)
SdpSessionOption sessionOptions; //* (session information)
SdpTimeing timing; //(time the session is active)
QString repeatTimes; //*(zero or more repeat times) ONLY STRING,NO FUNCTION
SdpMedia media; //(media name and transport address)
SdpMediaOption mediaOptions; //*
};
#endif // SDPSTRUCTURES_H