From 8b8d6f939abbe90618def6d26df7380ae4447cd3 Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Sat, 15 Dec 2018 13:39:59 +0100 Subject: [PATCH] fr Change-Id: I066027c3cb16d5ae7c2db33983798f269bd743c4 --- src/mncc.c | 4 ++-- src/sdp.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mncc.c b/src/mncc.c index ea6a9fc..a0731d3 100644 --- a/src/mncc.c +++ b/src/mncc.c @@ -320,7 +320,7 @@ static void continue_mt_call(struct mncc_call_leg *leg) return; /* assume the type is compatible */ - other_leg->payload_type = leg->base.payload_type; + other_leg->payload_type = 3; //leg->base.payload_type; } static void continue_call(struct mncc_call_leg *leg) @@ -382,7 +382,7 @@ static void check_rtp_create(struct mncc_connection *conn, const char *buf, int /* extract information about where the RTP is */ leg->base.ip = rtp->ip; leg->base.port = rtp->port; - leg->base.payload_type = rtp->payload_type; + leg->base.payload_type = 3;//rtp->payload_type; leg->base.payload_msg_type = rtp->payload_msg_type; /* TODO.. now we can continue with the call */ diff --git a/src/sdp.c b/src/sdp.c index 17eb577..df118aa 100644 --- a/src/sdp.c +++ b/src/sdp.c @@ -168,7 +168,7 @@ char *sdp_create_file(struct sip_call_leg *leg, struct call_leg *other) struct in_addr net = { .s_addr = htonl(other->ip) }; char *fmtp_str = NULL, *sdp; - leg->wanted_codec = app_media_name(other->payload_msg_type); + leg->wanted_codec = app_media_name(GSM_TCHF_FRAME); //other->payload_msg_type); if (strcmp(leg->wanted_codec, "AMR") == 0) fmtp_str = talloc_asprintf(leg, "a=fmtp:%d octet-align=1\r\n", other->payload_type);