1
0
mirror of http://www.pogo.org.uk/~mark/trx.git synced 2024-10-31 18:05:06 +01:00

oRTP segfaults in RECVONLY mode

Reported-by: Paul Le Couteur <paullecouteur@gmail.com>
This commit is contained in:
Mark Hills 2020-01-04 11:28:43 +00:00
parent 66b4707a24
commit 85fe843d61

9
rx.c
View File

@ -60,6 +60,15 @@ static RtpSession* create_rtp_recv(const char *addr_desc, const int port,
abort();
}
/*
* oRTP in RECVONLY mode attempts to send RTCP packets and
* segfaults (v4.3.0 tested)
*
* https://stackoverflow.com/questions/43591690/receiving-rtcp-issues-within-ortp-library
*/
rtp_session_enable_rtcp(session, FALSE);
return session;
}