Hi,
there is a bug in the RtpPacket.cs file,
The property Extension has a wrong reading.
Instead of
public ReadOnlySpan<byte> Extension => rawData[HeaderSize..ExtensionSize];
should be
public ReadOnlySpan<byte> Extension => rawData[HeaderSize..(HeaderSize + ExtensionSize)];
I don't know how to create a new pull request when one is pending, sorry
Hi, there is a bug in the RtpPacket.cs file, The property Extension has a wrong reading. Instead of
public ReadOnlySpan<byte> Extension => rawData[HeaderSize..ExtensionSize];
should bepublic ReadOnlySpan<byte> Extension => rawData[HeaderSize..(HeaderSize + ExtensionSize)];
I don't know how to create a new pull request when one is pending, sorry