Skip to content
Snippets Groups Projects
Commit 401919e0 authored by George Politis's avatar George Politis
Browse files

Fixes regression in the ReceiverFeedbackFilter.

parent f7c94fc8
No related branches found
No related tags found
No related merge requests found
......@@ -35,11 +35,17 @@ public RTCPCompoundPacket transform(RTCPCompoundPacket inPacket)
{
switch (p.type)
{
case RTCPPacket.RR:
// mute the receiver report blocks.
RTCPRRPacket rr = (RTCPRRPacket) p;
outPackets.add(rr);
rr.reports = new RTCPReportBlock[0];
break;
case RTCPPacket.SR:
// Grab the receiver report blocks to put them into the
// cache after the loop is done; mute the receiver report
// blocks.
// mute the receiver report blocks.
RTCPSRPacket sr = (RTCPSRPacket) p;
outPackets.add(sr);
......
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