From: Jeff Lenk Date: Fri, 25 Feb 2011 21:39:42 +0000 (-0600) Subject: trivial compiler warning fix X-Git-Tag: v1.2-rc1~181^2~62 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9a3cf6015b5a9fc292d14c26033c2328b790490f;p=thirdparty%2Ffreeswitch.git trivial compiler warning fix --- diff --git a/src/switch_rtp.c b/src/switch_rtp.c index 76b2c91b47..58934bfe4b 100644 --- a/src/switch_rtp.c +++ b/src/switch_rtp.c @@ -2856,6 +2856,7 @@ static int rtp_common_read(switch_rtp_t *rtp_session, switch_payload_t *payload_ goto end; } +#ifdef 0 if (bytes && rtp_session->recv_msg.header.version == 2 && !switch_test_flag(rtp_session, SWITCH_RTP_FLAG_PROXY_MEDIA) && !switch_test_flag(rtp_session, SWITCH_RTP_FLAG_UDPTL) && rtp_session->recv_msg.header.pt != 13 && @@ -2865,6 +2866,7 @@ static int rtp_common_read(switch_rtp_t *rtp_session, switch_payload_t *payload_ /* drop frames of incorrect payload number and return CNG frame instead */ return_cng_frame(); } +#endif if (!bytes && (io_flags & SWITCH_IO_FLAG_NOBLOCK)) { rtp_session->missed_count = 0;