From 3fdf90d6213f736974eed2a1fb6ca7a8533a8a16 Mon Sep 17 00:00:00 2001 From: Elad Alon Date: Mon, 21 Jan 2019 13:44:23 +0100 Subject: [PATCH] PSFB without REMB magic word is not an error Several PSFB messages might be supported, distinguished using the unique identifier. If the unique identifier is not REMB, it's not an error, and so a warning should not be issued. Bug: webrtc:10226 Change-Id: I5e79b473bd54cf0964f19329efb33354f63f5d5e Reviewed-on: https://webrtc-review.googlesource.com/c/118686 Reviewed-by: Danil Chapovalov Commit-Queue: Elad Alon Cr-Commit-Position: refs/heads/master@{#26359} --- modules/rtp_rtcp/source/rtcp_packet/remb.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/rtp_rtcp/source/rtcp_packet/remb.cc b/modules/rtp_rtcp/source/rtcp_packet/remb.cc index 3ed1fbdb80..bda50f5d25 100644 --- a/modules/rtp_rtcp/source/rtcp_packet/remb.cc +++ b/modules/rtp_rtcp/source/rtcp_packet/remb.cc @@ -57,7 +57,7 @@ bool Remb::Parse(const CommonHeader& packet) { } const uint8_t* const payload = packet.payload(); if (kUniqueIdentifier != ByteReader::ReadBigEndian(&payload[8])) { - RTC_LOG(LS_WARNING) << "REMB identifier not found, not a REMB packet."; + RTC_LOG(LS_INFO) << "REMB identifier not found, not a REMB packet."; return false; } uint8_t number_of_ssrcs = payload[12];