From edca6622081f08ff209371c2bd1adcbad13a85d1 Mon Sep 17 00:00:00 2001 From: Dw9 Date: Fri, 5 Apr 2024 22:11:50 +0800 Subject: [PATCH] fix webrtc echo error (#3442) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 遵循着pr #3360 的修改方式解决webrtc echo模式失败的问题 --- webrtc/WebRtcEchoTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/WebRtcEchoTest.cpp b/webrtc/WebRtcEchoTest.cpp index 40be2613..cf7527a8 100644 --- a/webrtc/WebRtcEchoTest.cpp +++ b/webrtc/WebRtcEchoTest.cpp @@ -45,7 +45,7 @@ void WebRtcEchoTest::onCheckSdp(SdpType type, RtcSession &sdp) { for (auto &m : sdp.media) { for (auto &ssrc : m.rtp_rtx_ssrc) { if (!ssrc.msid.empty()) { - ssrc.msid = "zlmediakit msid"; + ssrc.msid = "zlmediakit-mslabel zlmediakit-label-" + m.mid; } } }