mirror of
https://github.com/livekit/livekit.git
synced 2026-04-06 12:15:39 +00:00
* Sequencer small optimisations 1. Use range map to exclude padding only packets. Should take lesser space as we are not using slice to hold pointer to actual data. 2. Avoid `time.Now()` when adding each packet. Just use the arrival time as it should be close enough. `time.Now()` was showing up in profile. * remove debug * correct comment