jrtplib

C++ library for RTP (Real-time Transport Protocol) implementation

brewmacoslinux
Try with needOr install directly
Source

About

Fully featured C++ Library for RTP (Real-time Transport Protocol)

Commands

jrtplib

Examples

Include jrtplib headers in C++ project for RTP session management$ #include <jrtplib3/rtpsession.h> using namespace jrtplib;
Create RTP session and initialize with local port binding$ RTPSession session; session.Create(RTPSessionParams(), new RTPUDPv4TransmissionParams());
Link jrtplib library during compilation$ g++ -o myapp myapp.cpp -ljrtp -lm