diff --git a/src/Rtsp/RtpReceiver.cpp b/src/Rtsp/RtpReceiver.cpp index c33c2b5a..70c22b60 100644 --- a/src/Rtsp/RtpReceiver.cpp +++ b/src/Rtsp/RtpReceiver.cpp @@ -63,7 +63,7 @@ bool RtpReceiver::handleOneRtp(int index, TrackType type, int sample_rate, uint8 //ssrc错误 if (_ssrc_alive[index].elapsedTime() < 10 * 1000) { //接受正确ssrc的rtp在10秒内,那么我们认为存在多路rtp,忽略掉ssrc不匹配的rtp - WarnL << "ssrc比匹配,rtp已丢弃:" << ssrc << " != " << _ssrc[index]; + WarnL << "ssrc不匹配,rtp已丢弃:" << ssrc << " != " << _ssrc[index]; return false; } InfoL << "rtp流ssrc切换:" << _ssrc[index] << " -> " << ssrc;