protocol/rtp/client.go: updated comment for NewClient to remove mention of removed op argument

This commit is contained in:
Saxon 2019-05-08 15:47:11 +09:30
parent aa7553947a
commit 7e96f5999c
1 changed files with 2 additions and 6 deletions

View File

@ -67,12 +67,8 @@ type Client struct {
// NewClient returns a pointer to a new Client.
//
// addr is the address of form <ip>:<port> that we expect to receive
// RTP at. op is a function, if non nil, that will be used to perform an
// operation on each received RTP packet. For example, the op func may parse
// out the RTP payload. The result of the operation is then what is stored
// in the ringBuffer for reading. l is a logging function defined by the
// signuture of the log type defined above. rt is the read timeout used when
// reading from the client ringbuffer.
// RTP at. l is a logging function defined by the signuture of the log type
// defined above. rt is the read timeout used when reading from the client ringbuffer.
func NewClient(addr string, l log, rt time.Duration) (*Client, error) {
c := &Client{
done: make(chan struct{}, chanSize),