cloud-game/vendor/github.com/pion/rtcp/util.go

9 lines
178 B
Go

package rtcp
// getPadding Returns the padding required to make the length a multiple of 4
func getPadding(len int) int {
if len%4 == 0 {
return 0
}
return 4 - (len % 4)
}