()
| 234 | |
| 235 | /** Get the number of active video streams. */ |
| 236 | export function getVideoStreamCount(): number { |
| 237 | return videoStreams.size; |
| 238 | } |
| 239 | |
| 240 | /** Map of camera ID to the actively-decoding HTMLVideoElement (owned by sidebar). */ |
| 241 | const videoElements = new Map<number, HTMLVideoElement>(); |
no outgoing calls
no test coverage detected