aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2024-01-30 05:56:45 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2024-02-09 05:17:39 +0100
commita1863b164e34d1b7c8628696373be983a2c8ec62 (patch)
tree5f86209f4354d7281578262a78f23c68331bfedc
parent958596dc282d3defbdac8c8d50119051c93434f7 (diff)
tweak comment
-rw-r--r--src/libmsc/sdp_msg.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libmsc/sdp_msg.c b/src/libmsc/sdp_msg.c
index c6869d8ac..e3adf7cee 100644
--- a/src/libmsc/sdp_msg.c
+++ b/src/libmsc/sdp_msg.c
@@ -644,9 +644,9 @@ void sdp_audio_codecs_intersection(struct sdp_audio_codecs *ac_dest, const struc
continue;
}
- /* Doing payload_type number translation of part of the intersection because it makes the algorithm
- * simpler: we already know ac_dest is a subset of ac_other, and there is no need to resolve payload
- * type number conflicts. */
+ /* Doing payload_type number translation as part of the intersection algorithm is a good match:
+ * we already know ac_dest will be a subset of ac_other, and there is no need to resolve payload type
+ * number conflicts. */
if (translate_payload_type_numbers)
codec->payload_type = other->payload_type;
}