mirror of
https://github.com/livekit/livekit.git
synced 2026-03-30 17:45:40 +00:00
* Remove callbacks queue from sfu/DownTrack - Connection stats callback was happening in connection stats go routine - RTT update launches a goroutine on the receive side as it affects the subscriber. So, no need to queue it. - Changed two things o Move close handler to goroutine. It is better that way as it touches the subscriber as well o Move max layer handling into a goroutine also so that the callback does minimal work. With this all the send side callback queues are removed. * small clean up