I'm using .net to do call recroding with pcap.net.
till now I have got the rtp packet. And its length is 32 bytes.
The codec used is G729 and payload type is 18.
byte[] bytes = HexString2Bytes(udp.Payload.ToHexadecimalString());
string rtppayload = ASCIIEncoding.ASCII.GetString(bytes);
I need to get the actual rtp payload. Plz help me...