aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2024-02-01 05:15:30 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2024-02-09 05:17:39 +0100
commit6266b3266b903992ced27c26084b317b566327c9 (patch)
treedfbe88b4f2cb922548c56fce55db22a7ea6f5437
parentd4870df455d6db63a4408150938bc2c04299bc3a (diff)
pass dynamically configured AMR rates to BSS and RNC [2/3]
In ran_msg_a.c for 2G: Use sdp_audio_codecs_to_speech_codec_list() to get the correct AMR cfg bits in the outgoing Speech Codec List (MSC Preferred). The static function to convert from Speech Versions is no longer used, move its special-case for CSD to the caller location. With this patch, a BSC now has a chance to select AMR rates matching the other call leg, dynamically. Change-Id: Ia9f4ad7f3646556aadc632bc5ffa477941626c5f
-rw-r--r--src/libmsc/ran_msg_a.c56
1 files changed, 18 insertions, 38 deletions
diff --git a/src/libmsc/ran_msg_a.c b/src/libmsc/ran_msg_a.c
index 8cf6bfab0..eb45c2ba4 100644
--- a/src/libmsc/ran_msg_a.c
+++ b/src/libmsc/ran_msg_a.c
@@ -32,6 +32,7 @@
#include <osmocom/msc/ran_msg_a.h>
#include <osmocom/msc/sccp_ran.h>
#include <osmocom/msc/gsm_data.h>
+#include <osmocom/msc/codec_mapping.h>
#define LOG_RAN_A_DEC(RAN_DEC, level, fmt, args...) \
LOG_RAN_DEC(RAN_DEC, DBSSAP, level, "BSSMAP: " fmt, ## args)
@@ -1340,39 +1341,6 @@ static struct msgb *ran_a_wrap_dtap(struct msgb *dtap)
return an_apdu;
}
-static int ran_a_channel_type_to_speech_codec_list(struct gsm0808_speech_codec_list *scl, const struct gsm0808_channel_type *ct)
-{
- unsigned int i;
- int rc;
-
- memset(scl, 0, sizeof(*scl));
-
- switch (ct->ch_indctr) {
- case GSM0808_CHAN_DATA:
- scl->codec[0] = (struct gsm0808_speech_codec) {
- .pi = true, /* PI indicates CSDoIP is supported */
- .pt = false, /* PT indicates CSDoTDM is not supported */
- .type = GSM0808_SCT_CSD,
- .cfg = 0, /* R2/R3 not set (redundancy not supported) */
- };
- scl->len = 1;
- break;
- case GSM0808_CHAN_SPEECH:
- for (i = 0; i < ct->perm_spch_len; i++) {
- rc = gsm0808_speech_codec_from_chan_type(&scl->codec[i], ct->perm_spch[i]);
- if (rc != 0)
- return -EINVAL;
- }
- scl->len = i;
- break;
- default:
- OSMO_ASSERT(0);
- break;
- }
-
- return 0;
-}
-
/* Compose a BSSAP Assignment Command.
* Passing an RTP address is optional.
* The msub is passed merely for error logging. */
@@ -1385,7 +1353,6 @@ static struct msgb *ran_a_make_assignment_command(struct osmo_fsm_inst *log_fi,
struct sockaddr_storage *use_rtp_addr = NULL;
struct msgb *msg;
const uint32_t *call_id = NULL;
- int rc;
if (!ac->channel_type) {
LOG_RAN_A_ENC(log_fi, LOGL_ERROR, "Assignment Command: missing Channel Type\n");
@@ -1393,10 +1360,23 @@ static struct msgb *ran_a_make_assignment_command(struct osmo_fsm_inst *log_fi,
}
if (ac->channel_type->ch_indctr == GSM0808_CHAN_SPEECH || ac->channel_type->ch_indctr == GSM0808_CHAN_DATA) {
- rc = ran_a_channel_type_to_speech_codec_list(&scl, ac->channel_type);
- if (rc < 0) {
- LOG_RAN_A_ENC(log_fi, LOGL_ERROR, "Assignment Command: Cannot translate Channel Type to Speech Codec List\n");
- return NULL;
+ switch (ac->channel_type->ch_indctr) {
+ case GSM0808_CHAN_SPEECH:
+ sdp_audio_codecs_to_speech_codec_list(&scl, ac->codecs);
+ break;
+ case GSM0808_CHAN_DATA:
+ scl = (struct gsm0808_speech_codec_list){
+ .codec = {
+ {
+ .pi = true, /* PI indicates CSDoIP is supported */
+ .pt = false, /* PT indicates CSDoTDM is not supported */
+ .type = GSM0808_SCT_CSD,
+ .cfg = 0, /* R2/R3 not set (redundancy not supported) */
+ },
+ },
+ .len = 1,
+ };
+ break;
}
use_scl = &scl;