From b7ac96036de438abc0fe544e47d1e18615322bff Mon Sep 17 00:00:00 2001 From: Mark Hills Date: Fri, 21 Mar 2014 17:34:10 +0000 Subject: [PATCH] Use constants for clarity --- rx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rx.c b/rx.c index 9fe62c0..e9d2e3c 100644 --- a/rx.c +++ b/rx.c @@ -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);