rtp: corrected error in comment

This commit is contained in:
saxon 2019-01-13 16:42:30 +10:30
parent cb762c04c6
commit 7f140baf22
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ package rtp
const (
rtpVer = 2
headSize = 3 * 4 // Header suze of an rtp packet.
headSize = 3 * 4 // Header size of an rtp packet.
defPayloadSize = sendLen // Default payload size for the rtp packet.
defPktSize = headSize + defPayloadSize // Default packet size is header size + payload size.
)