mirror of
https://github.com/aler9/gortsplib
synced 2025-11-03 03:03:31 +08:00
previous formula was: uint32(a + uint32(b)) this formula overflows two times, while it should overflow once. new formula is: uint32(uint64(a) + uint64(b))