protocol/rtcp: added todo comment to jitter()

This commit is contained in:
Saxon 2019-05-03 20:00:18 +09:30
parent 7fe5e74123
commit 9b3523607b
1 changed files with 1 additions and 0 deletions

View File

@ -257,6 +257,7 @@ func (c *Client) sequence() uint32 {
// jitter returns the interarrival jitter as described by RTCP specifications: // jitter returns the interarrival jitter as described by RTCP specifications:
// https://tools.ietf.org/html/rfc3550 // https://tools.ietf.org/html/rfc3550
// TODO(saxon): complete this.
func (c *Client) jitter() uint32 { func (c *Client) jitter() uint32 {
return 0 return 0
} }