mirror of
https://github.com/giongto35/cloud-game.git
synced 2026-07-22 17:47:11 +00:00
9 lines
178 B
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)
|
|
}
|