Browse Source

Changed the targetSSRC to be the number 4.

Staz M 4 years ago
parent
commit
e5e337a0a5
1 changed files with 2 additions and 1 deletions
  1. 2 1
      examples/sfu-media/main.cpp

+ 2 - 1
examples/sfu-media/main.cpp

@@ -33,6 +33,7 @@ class Sender {
 };
 
 struct Receiver {
+    // TODO @paul.
     std::shared_ptr<rtc::PeerConnection> conn;
     std::shared_ptr<rtc::Track> track;
 };
@@ -65,7 +66,7 @@ int main() {
 		auto session = std::make_shared<rtc::RtcpSession>();
 		track->setRtcpHandler(session);
 
-		const rtc::SSRC targetSSRC = 15;
+		const rtc::SSRC targetSSRC = 4;
 
 		track->onMessage(
 		    [&receivers](rtc::binary message) {