From 221e26a7700ceba01b4c863b744d4e3b3667cbb4 Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Tue, 6 Sep 2022 00:27:57 +0200 Subject: [PATCH] fixme comments for AMR modes Change-Id: I4a63bd21c3bc0cfa18777edf1426cbadd2fde7a3 --- src/libmsc/codec_sdp_cc_t9n.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libmsc/codec_sdp_cc_t9n.c b/src/libmsc/codec_sdp_cc_t9n.c index 251fe66ce..4ed5f48e7 100644 --- a/src/libmsc/codec_sdp_cc_t9n.c +++ b/src/libmsc/codec_sdp_cc_t9n.c @@ -395,6 +395,7 @@ void sdp_audio_codecs_to_speech_codec_list(struct gsm0808_speech_codec_list *scl if (scl->len >= ARRAY_SIZE(scl->codec)) break; scl->codec[scl->len] = m->gsm0808_speech_codec; + /* FIXME: apply AMR configuration according to codec->fmtp */ scl->len++; } } @@ -408,6 +409,7 @@ void sdp_audio_codecs_from_speech_codec_list(struct sdp_audio_codecs *ac, const if (!m) continue; sdp_audio_codecs_add_copy(ac, &m->sdp); + /* FIXME: for AMR, apply sc->cfg to the added codec's fmtp */ } }