Use constants for clarity

master
Mark Hills 2014-03-21 17:34:10 +00:00
parent ad80d6b1c1
commit b7ac96036d
1 changed files with 2 additions and 2 deletions

4
rx.c
View File

@ -45,8 +45,8 @@ static RtpSession* create_rtp_recv(const char *addr_desc, const int port,
RtpSession *session;
session = rtp_session_new(RTP_SESSION_RECVONLY);
rtp_session_set_scheduling_mode(session, 0);
rtp_session_set_blocking_mode(session, 0);
rtp_session_set_scheduling_mode(session, FALSE);
rtp_session_set_blocking_mode(session, FALSE);
rtp_session_set_local_addr(session, addr_desc, port, -1);
rtp_session_set_connected_mode(session, FALSE);
rtp_session_enable_adaptive_jitter_compensation(session, TRUE);