Go to file
Aaro Altonen 50606cc6b4 Create routines for destroying RTP readers/writers
The RTP connection should be destroyed by calling context->destroy_*
functions to ensure that the session is completely destroyed.

These functions will call the writer's/reader's destructor, close the
socket, release all common resources, remove them from the global
hashmap and send RTCP BYE message to all other participants
2019-05-23 09:14:34 +03:00
examples Add example code for sending Opus 2019-05-17 09:18:07 +03:00
src Create routines for destroying RTP readers/writers 2019-05-23 09:14:34 +03:00
.gitignore Add gitignore 2019-04-01 10:12:09 +03:00
Makefile Initial commit 2019-03-30 12:21:51 +02:00
README.md Update README.md 2019-05-17 09:36:54 +03:00

README.md

rtplib

Based on Marko Viitanen's fRTPlib

building

mkdir build
cd build
cmake ..
make
sudo make install

defines

if you want to enable run-time rtp statistics, use RTP_STATS

if you want to disable all prints (the rtp lib is quite verbose), use RTP_SILENT