Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libjitsi
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ZRTP
libjitsi
Commits
401919e0
Commit
401919e0
authored
9 years ago
by
George Politis
Browse files
Options
Downloads
Patches
Plain Diff
Fixes regression in the ReceiverFeedbackFilter.
parent
f7c94fc8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/org/jitsi/impl/neomedia/rtcp/termination/strategies/ReceiverFeedbackFilter.java
+9
-3
9 additions, 3 deletions
...a/rtcp/termination/strategies/ReceiverFeedbackFilter.java
with
9 additions
and
3 deletions
src/org/jitsi/impl/neomedia/rtcp/termination/strategies/ReceiverFeedbackFilter.java
+
9
−
3
View file @
401919e0
...
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment