Browse Source

Hid a common warning

root 4 years ago
parent
commit
02e4ed5221
1 changed files with 3 additions and 2 deletions
  1. 3 2
      src/peerconnection.cpp

+ 3 - 2
src/peerconnection.cpp

@@ -621,7 +621,8 @@ void PeerConnection::forwardMedia(message_ptr message) {
                         }
                     }
                 }else {
-                    PLOG_WARNING << "Unknown packet type: " << header->payloadType();
+		    // This warning is commonly thrown with SDES PT=202
+                    // PLOG_WARNING << "Unknown packet type: " << (int) header->payloadType();
                 }
             }
             offset += header->lengthInBytes();
@@ -641,7 +642,7 @@ void PeerConnection::forwardMedia(message_ptr message) {
 	     *   Therefore, it is expected that we don't know where to forward packets.
 	     *   Is this ideal? No! Do I know how to fix it? No!
 	     */
-//		PLOG_WARNING << "Track not found for SSRC " << ssrc << ", dropping";
+		//PLOG_WARNING << "Track not found for SSRC " << ssrc << ", dropping";
 		return;
 	}