update docs

This commit is contained in:
aler9
2020-09-20 17:48:26 +02:00
parent e34b7d9326
commit 927c088278
2 changed files with 4 additions and 4 deletions

View File

@@ -56,7 +56,7 @@ func (c *container) wait() int {
return int(code)
}
func TestConnClientTCP(t *testing.T) {
func TestConnClientReadTCP(t *testing.T) {
cnt1, err := newContainer("rtsp-simple-server", "server", []string{})
require.NoError(t, err)
defer cnt1.close()
@@ -102,7 +102,7 @@ func TestConnClientTCP(t *testing.T) {
require.NoError(t, err)
}
func TestConnClientUDP(t *testing.T) {
func TestConnClientReadUDP(t *testing.T) {
cnt1, err := newContainer("rtsp-simple-server", "server", []string{})
require.NoError(t, err)
defer cnt1.close()

View File

@@ -52,7 +52,7 @@ func main() {
var wg sync.WaitGroup
// receive RTP frames
// read RTP frames
for trackId, rtpRead := range rtpReads {
wg.Add(1)
@@ -70,7 +70,7 @@ func main() {
}(trackId, rtpRead)
}
// receive RTCP frames
// read RTCP frames
for trackId, rtcpRead := range rtcpReads {
wg.Add(1)