mgcp_sdp: add spec reference

Change-Id: I16cd453aa986cf9efa0716257230aed8739593da
This commit is contained in:
Philipp Maier 2023-02-07 12:00:33 +01:00 committed by dexter
parent 342a9a9418
commit 057decfe3a
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ static int fmtp_from_sdp(void *ctx, struct sdp_fmtp_param *fmtp_param, char *sdp
if (delimiter == ';' || delimiter == ',')
str_ptr[strlen(str_ptr) - 1] = '\0';
/* AMR octet aligned parameter */
/* AMR octet aligned parameter (see also RFC 3267, section 8.3) */
if (sscanf(param_str, "octet-align=%d", &amr_octet_aligned) == 1) {
fmtp_param->param.amr_octet_aligned_present = true;
fmtp_param->param.amr_octet_aligned = false;