[Freeswitch-svn] [commit] r13360 - freeswitch/trunk/src

FreeSWITCH SVN mikej at freeswitch.org
Fri May 15 10:55:53 PDT 2009


Author: mikej
Date: Fri May 15 12:55:53 2009
New Revision: 13360

Log:
use uint16_t instead of u_short (FSBUILD-160)

Modified:
   freeswitch/trunk/src/switch_rtp.c

Modified: freeswitch/trunk/src/switch_rtp.c
==============================================================================
--- freeswitch/trunk/src/switch_rtp.c	(original)
+++ freeswitch/trunk/src/switch_rtp.c	Fri May 15 12:55:53 2009
@@ -1981,7 +1981,7 @@
 		switch_set_flag(frame, SFF_RFC2833);
 	}
 	frame->timestamp = ntohl(rtp_session->recv_msg.header.ts);
-	frame->seq = (uint16_t) ntohs((u_short) rtp_session->recv_msg.header.seq);
+	frame->seq = (uint16_t) ntohs((uint16_t) rtp_session->recv_msg.header.seq);
 	frame->ssrc = ntohl(rtp_session->recv_msg.header.ssrc);
 	frame->m = rtp_session->recv_msg.header.m ? SWITCH_TRUE : SWITCH_FALSE;
 



More information about the Freeswitch-svn mailing list