How to use RTP in ios

I want to create an application that plays video using the RTP protocol.

I just need to know if anyone can provide any resources / websites where I can find information on how to use the RTP protocol.

+4
source share
1 answer

What about RFC?

RTP RFC 3550: http://www.ietf.org/rfc/rfc3550.txt

You should also take a look at RTCP for RTP flow control.

RTCP RFC 3605: http://www.ietf.org/rfc/rfc3605.txt

To implement an RTP server in C ++, you can take a look at JRTPLIB: http://research.edm.uhasselt.be/~jori/page/index.php?n=CS.Jrtplib

+2
source

All Articles