aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2024-02-07 03:01:33 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2024-02-09 05:17:39 +0100
commit0d2395c64c239e3b36c68411f4028d43e004d97c (patch)
tree252b067fc92e5361702705444a25262240d28ff3
parent897e83ea4eabd6deabd16275d2672fe5372fa8e5 (diff)
rtp_stream use fmtp FU
-rw-r--r--src/libmsc/rtp_stream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libmsc/rtp_stream.c b/src/libmsc/rtp_stream.c
index ebdcea13d..29ca72915 100644
--- a/src/libmsc/rtp_stream.c
+++ b/src/libmsc/rtp_stream.c
@@ -419,7 +419,7 @@ void rtp_stream_set_codecs(struct rtp_stream *rtps, const struct sdp_audio_codec
{
if (!codecs || !codecs->count)
return;
- if (sdp_audio_codecs_cmp(&rtps->codecs, codecs, false, true) == 0) {
+ if (sdp_audio_codecs_cmp(&rtps->codecs, codecs, true, true) == 0) {
LOG_RTPS(rtps, LOGL_DEBUG, "no change: codecs already set to %s\n",
sdp_audio_codecs_to_str(&rtps->codecs));
return;