forked from kthompson/RtpLib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRtcp.cs
63 lines (56 loc) · 1.88 KB
/
Rtcp.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace RtpLib
{
public static class Rtcp
{
public enum PacketType
{
Unknown = 0,
SenderReport = 200,
ReceiverReport = 201,
SourceDescription = 202,
Bye = 203,
AppDefined = 204
}
public struct Stats
{
public uint HighestSequenceNumber;
public uint ExpectedPacketCount;
public uint ActualPacketCount;
public ulong MostRecentPacketTime;
public uint Jitter;
public uint ServerSsrc;
}
private static readonly Dictionary<PacketType, RtcpPacket> RtcpPacketTypes = new Dictionary<PacketType, RtcpPacket>
{
{PacketType.ReceiverReport, new RtcpReceiverReport()},
{PacketType.SenderReport, new RtcpSenderReport()},
{PacketType.SourceDescription, new RtcpSourceDescription()},
{PacketType.Bye, new RtcpBye()},
{PacketType.AppDefined, new RtcpAppDefined()},
{PacketType.Unknown, new RtcpUnknown()}
};
public static void RegisterPacketType<T>(PacketType type)
where T : RtcpPacket, new()
{
lock (RtcpPacketTypes)
{
RtcpPacketTypes.Remove(type);
RtcpPacketTypes.Add(type, new T());
}
}
public static RtcpPacket CreatePacketType(PacketType type)
{
RtcpPacket packet = null;
lock (RtcpPacketTypes)
{
if (!RtcpPacketTypes.TryGetValue(type, out packet))
return new RtcpUnknown();
}
return packet.Clone() as RtcpPacket;
}
}
}