获取时间戳rtp报文
本文关键字:报文 rtp 时间戳 获取 | 更新日期: 2023-09-27 18:10:02
我使用PacketDotNet从RTP报头检索数据。但有时时间戳为负值。
GetTimeStamp(UdpPacket packetUdp)
{
byte[] packet = packetUdp.PayloadData;
long timestamp = GetRTPHeaderValue(packet, 32, 63);
return timestamp;
}
private static int GetRTPHeaderValue(byte[] packet, int startBit, int endBit)
{
int result = 0;
// Number of bits in value
int length = endBit - startBit + 1;
// Values in RTP header are big endian, so need to do these conversions
for (int i = startBit; i <= endBit; i++)
{
int byteIndex = i / 8;
int bitShift = 7 - (i % 8);
result += ((packet[byteIndex] >> bitShift) & 1) *
(int)Math.Pow(2, length - i + startBit - 1);
}
return result;
}
可能是RTCP报文导致的。如果RTP数据来自手机,那么手机会定期发送RTCP报告。它们似乎每隔200个包就会出现一次。格式不同,你的代码可能以相同的方式读取它——你需要处理RTCP数据包。
数据包格式:http://www.cl.cam.ac.uk/~jac22/books/mm/book/node162.html