Skip to content

Commit

Permalink
style: Reformats comment to obey 80-char len.
Browse files Browse the repository at this point in the history
  • Loading branch information
gpolitis committed Jun 11, 2018
1 parent 2de7aa8 commit 18ed71b
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/main/java/org/jitsi/videobridge/VideoChannel.java
Original file line number Diff line number Diff line change
Expand Up @@ -283,10 +283,13 @@ protected void maybeStartStream()
boolean previouslyStarted = getStream().isStarted();
super.maybeStartStream();

// If a recvonly channel is created, existing streams won't be forwarded to it until the next
// keyframe comes in. bitrateController.update gets called before ICE has completed so the
// keyframe comes in before this channel is actually started. So update the bitrate controller when
// the stream starts which will request a keyframe from other channels if needed.
// If a recvonly channel is created, existing streams won't be
// forwarded to it until the next keyframe comes in.
// bitrateController.update gets called before ICE has completed so the
// keyframe comes in before this channel is actually started. So update
// the bitrate controller when the stream starts which will request a
// keyframe from other channels if needed.

if(getStream().isStarted() && !previouslyStarted)
{
bitrateController.update(null, -1);
Expand Down

0 comments on commit 18ed71b

Please sign in to comment.