获取时间戳rtp数据包

时间:2014-06-24 14:51:44

标签: c# timestamp rtp

我正在使用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;
    }

1 个答案:

答案 0 :(得分:0)

可能是由R​​TCP数据包引起的。如果RTP数据来自手机,则手机会定期发送RTCP报告。它们似乎每隔200个数据包弹出一次。格式不同,您的代码可能以相同的方式读取它 - 您将需要处理RTCP数据包。

数据包格式:http://www.cl.cam.ac.uk/~jac22/books/mm/book/node162.html