fixme comments for AMR modes

Change-Id: I4a63bd21c3bc0cfa18777edf1426cbadd2fde7a3
This commit is contained in:
Neels Hofmeyr 2022-09-06 00:27:57 +02:00
parent 06c9ca4927
commit 221e26a770
1 changed files with 2 additions and 0 deletions

View File

@ -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 */
}
}