diff --git a/rx.c b/rx.c index 8f861e2..40f10a7 100644 --- a/rx.c +++ b/rx.c @@ -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; }