mgw: Don't use RTP_Endpoint anymore. We use RTP_Emulation new.

Change-Id: I6302412daaafc37c8e7740cce4806405d3086fa7
This commit is contained in:
Harald Welte 2018-03-29 17:39:10 +02:00
parent 38d6894cd6
commit 935cb8f6ba
1 changed files with 0 additions and 11 deletions

View File

@ -7,7 +7,6 @@ module MGCP_Test {
import from MGCP_CodecPort_CtrlFunct all;
import from RTP_CodecPort all;
import from RTP_CodecPort_CtrlFunct all;
import from RTP_Endpoint all;
import from RTP_Emulation all;
import from IPL4asp_Types all;
@ -19,13 +18,10 @@ module MGCP_Test {
* class members in C++ */
type component dummy_CT {
port MGCP_CODEC_PT MGCP;
port RTP_CODEC_PT RTP;
var boolean initialized := false;
var ConnectionId g_mgcp_conn_id := -1;
var integer g_trans_id;
var RtpEndpoint g_rtp_ep[2];
var RTP_Emulation_CT vc_RTPEM[2];
port RTPEM_CTRL_PT RTPEM[2];
};
@ -74,13 +70,6 @@ module MGCP_Test {
res := MGCP_CodecPort_CtrlFunct.f_IPL4_connect(MGCP, mp_remote_ip, mp_remote_udp_port, mp_local_ip, mp_local_udp_port, 0, { udp := {} });
g_mgcp_conn_id := res.connId;
map(self:RTP, system:RTP_CODEC_PT);
ssrc := float2int(rnd()*4294967296.0);
rtp_endpoint_init(g_rtp_ep[0], mp_local_ip, mp_local_rtp_port_base, ssrc);
rtp_endpoint_bind(RTP, g_rtp_ep[0]);
rtp_endpoint_init(g_rtp_ep[1], mp_local_ip, mp_local_rtp_port_base+2, ssrc);
rtp_endpoint_bind(RTP, g_rtp_ep[1]);
for (var integer i := 0; i < sizeof(vc_RTPEM); i := i+1) {
f_rtpem_init(vc_RTPEM[i], i);
connect(vc_RTPEM[i]:CTRL, self:RTPEM[i]);