forked from kthompson/RtpLib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRtcpClient.cs
186 lines (153 loc) · 4.95 KB
/
RtcpClient.cs
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net;
using System.IO;
using System.Threading;
using System.Diagnostics;
namespace RtpLib
{
public class RtcpClient : IDisposable
{
#region Constructors
public RtcpClient(RtpListener client)
: this(client, new IPEndPoint(IPAddress.Any, 0))
{
}
public RtcpClient(RtpListener client, int port)
: this(client, new IPEndPoint(IPAddress.Any, port))
{
}
public RtcpClient(RtpListener client, IPEndPoint localEndPoint)
{
this.RtpClient = client;
this.Listener = new UdpListener(localEndPoint);
this.Listener.ReceiveCallback = this.OnDataReceived;
}
#endregion
#region Public Methods
public void SendReceiverReport(Rtcp.Stats stats)
{
// Make sure we have the necessary information to send the report
if (this.ServerSsrc == 0 && stats.ServerSsrc == 0)
throw new InvalidOperationException();
var report = new RtcpReceiverReport();
report.Header.ItemCount = 1;
report.Ssrc = this.Ssrc;
report.SsrcOnly = this.UseShortReportFormat;
report.ReporteeSsrc = (this.ServerSsrc != 0 ? this.ServerSsrc : stats.ServerSsrc);
report.CumulativeLoss = stats.ExpectedPacketCount - stats.ActualPacketCount;
report.LossFraction = (byte)((256 * report.CumulativeLoss) / stats.ExpectedPacketCount);
report.ExtendedHighestSequenceNumber = stats.HighestSequenceNumber;
report.InterarrivalJitter = stats.Jitter;
report.LastSenderReportTimestamp = (uint)this.LastSenderReport.ToFileTimeUtc();
report.LastSenderReportDelay = (uint)(DateTime.UtcNow.ToFileTimeUtc() - this.LastSenderReport.ToFileTimeUtc());
this.SendPacket(report);
}
public void SendBye()
{
if (this.ServerSsrc == 0)
throw new InvalidOperationException();
var packet = new RtcpBye();
packet.Ssrc = this.Ssrc;
this.SendPacket(packet);
}
#endregion
#region Protected Methods
protected void SendPacket(RtcpPacket packet)
{
using (var ms = new MemoryStream())
{
packet.ToStream(ms);
this.Listener.Send(ms.GetBuffer(), this.RemoteEndPoint);
}
}
protected virtual void OnDataReceived(object sender, UdpBuffer buffer)
{
ThreadPool.QueueUserWorkItem((data) =>
{
try
{
this.OnRtcpPacketReceived(RtcpPacket.FromUdpBuffer(buffer));
}
catch (InvalidDataException ex)
{
Trace.TraceError("Error parsing RTCP packet: {0}", ex.ToString());
}
});
}
protected virtual void OnRtcpPacketReceived(RtcpPacket packet)
{
if (packet is RtcpSenderReport)
{
var report = packet as RtcpSenderReport;
if (this.ServerSsrc == 0)
this.ServerSsrc = report.Ssrc;
else if (this.ServerSsrc != report.Ssrc)
{
Trace.TraceWarning("Received RTCP Sender Report from wrong server. Received {0}, Expected {1}.", report.Ssrc, this.ServerSsrc);
return;
}
this.LastNtpTimestamp = report.NtpTimestamp;
this.LastSenderReport = DateTime.UtcNow;
}
}
#endregion
#region Properties
public RtpListener RtpClient
{
get;
private set;
}
public UdpListener Listener
{
get;
private set;
}
public bool UseShortReportFormat
{
get;
set;
}
public uint Ssrc
{
get;
set;
}
public IPEndPoint RemoteEndPoint
{
get;
set;
}
public uint ServerSsrc
{
get;
set;
}
public DateTime LastSenderReport
{
get;
set;
}
public ulong LastNtpTimestamp
{
get;
set;
}
#endregion
#region IDisposable Implementation
public void Dispose()
{
try
{
this.SendBye();
}
catch (InvalidOperationException)
{
}
this.Listener.Dispose();
}
#endregion
}
}