12 releases
0.3.5 | Sep 5, 2024 |
---|---|
0.3.3 | Aug 22, 2024 |
0.3.2 | Feb 28, 2024 |
0.2.1-alpha | Sep 22, 2023 |
0.1.1 | Jan 12, 2023 |
#177 in Video
2,485 downloads per month
Used in 5 crates
(2 directly)
245KB
5.5K
SLoC
webrtc-sys
This crate provides wrapper over the WebRTC API for use from Rust. We use the crate cxx.rs to simplify our bindings.
Wrappers
Most of our wrappers use the cxx.rs types compatible with Rust. As most of our wrappers are stateless, we allow multiple instances of a specific wrapper to point to the same underlying webrtc pointer. (e.g: multiple livekit::MediaStreamTrack pointing to the same webrtc::MediaStreamTrackInterface).
Threadsafe methods use the const keyword so we can easily call them from the Rust side without worrying about the mutability of the object. (This is similar on how Cell/UnsafeCell works but implemented on the C++ side: interior mutability).
Code
We also use this C++ code to provide other needed utilities/features on the Rust side (e.g: tiny bindings to libyuv).
Dependencies
~0.6–4MB
~66K SLoC