revid: updated some comments

This commit is contained in:
saxon 2019-01-02 08:50:59 +10:30
parent d0d9e20c87
commit aefdc46273
1 changed files with 3 additions and 2 deletions

View File

@ -118,7 +118,8 @@ type Revid struct {
// destination is the target endpoint. // destination is the target endpoint.
destination []loadSender destination []loadSender
// rtpSender // Rtp sending doesn't use ring buffer so we isolate this from Destination
// above
rtpSndr *rtpSender rtpSndr *rtpSender
// bitrate hold the last send bitrate calculation result. // bitrate hold the last send bitrate calculation result.
@ -150,7 +151,7 @@ func (p *packer) Write(frame []byte) (int, error) {
return len(frame), nil return len(frame), nil
} }
n, err := p.owner.buffer.Write(frame) n, err := p.owner.buffer.Write(frame)
// If we have an rtp sender bypass and give straight to sender // If we have an rtp sender bypass ringbuffer and give straight to sender
if p.owner.rtpSndr != nil { if p.owner.rtpSndr != nil {
err = p.owner.rtpSndr.send(frame) err = p.owner.rtpSndr.send(frame)
if err != nil { if err != nil {