From 3e4429af5e709953244f9a2ef63923792323f738 Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Wed, 7 Feb 2024 03:01:33 +0100 Subject: [PATCH] rtp_stream use fmtp FU Change-Id: If98a04d782d5a975d96e73d4dc74b4d20c363ffc --- src/libmsc/rtp_stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;