Skip to content
Snippets Groups Projects
Commit a7143beb authored by Boris Grozev's avatar Boris Grozev
Browse files

Do not forward RTCP RRs to the FMJ instance used for recording.

parent 35234168
No related branches found
Tags 522
No related merge requests found
......@@ -1632,6 +1632,13 @@ public RawPacket reverseTransform(RawPacket pkt)
if (receiveStream != null)
removeReceiveStream(receiveStream, false);
}
else if (pkt != null && pkt.getRTCPPacketType() == 201)
{
// Do not pass Receiver Reports to FMJ, because it does
// not need them (it isn't sending) and because they
// causes weird problems.
return null;
}
return pkt;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment