oRTP segfaults in RECVONLY mode

Reported-by: Paul Le Couteur <paullecouteur@gmail.com>
master
Mark Hills 2020-01-04 11:28:43 +00:00
parent 66b4707a24
commit 85fe843d61
1 changed files with 9 additions and 0 deletions

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;
}