aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgsmevent admin <admin@gsmevent.box>2018-12-19 15:27:49 +0100
committergsmevent admin <admin@gsmevent.box>2018-12-19 15:27:49 +0100
commit8e6786ad31475fd4d6ce7ad7b2a9b6413305855d (patch)
treef6584926a12df70b263a253e93d4f109a3247e64
parent501eb2ba1793e14f65d960d3a4d46a078a0da6d1 (diff)
Use dyn type 112neels/amr
-rw-r--r--src/mncc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mncc.c b/src/mncc.c
index 0c90bda..dd3a84f 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 = 98; //leg->base.payload_type;
+ other_leg->payload_type = 112; //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 = 98;//rtp->payload_type;
+ leg->base.payload_type = 112;//rtp->payload_type;
leg->base.payload_msg_type = rtp->payload_msg_type;
/* TODO.. now we can continue with the call */