Victor Gaydov
Victor Gaydov
It would be very handy for debugging and experimenting to have a feature of tracing the path through the pipeline of every bunch of samples. The suggested solution is to...
## Components - [ ] `ctl::Server` Functionality: - register multiple sources and sink - bind to given port - accept client connections, create sessions, and allow sessions to: - create...
- [ ] `Features`. Update page. Among other things, add audio backends and formats. - [ ] `Upgrading`. Add new "Upgrading" section. Provide instruction for upgrading from 0.1 to 0.2...
[RFC 3550](https://tools.ietf.org/html/rfc3550) requires conforming implementations to provide RTCP support. In fact, `roc` can function without it, though RTCP provides some benefits: - without RTCP, sender has no feedback from receiver;...
For security and performance reasons, receiver should have configurable limits for all types of resources that are automatically allocated by external events: * maximum number of sessions * maximum number...
It would be interesting to employ QoS flags in IP packets or 802.11 frames to prioritize our real-time traffic and decrease the probability of drops by, for example, Wi-Fi access...
Hi! Thanks a lot for this library. I've the following model class: ``` @entity class Foo { Foo(this._field, ...); @ColumnInfo(name: 'field') int _field = -1; int get field => _field;...
In [`base62.go`](https://github.com/lytics/base62/blob/master/base62.go#L18): ``` const encodeStd = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-0123456789." ``` there are 64 symbols. UPD: I also noted there is a [fork](https://github.com/tuxxy/base62).
[roc-java](https://github.com/roc-streaming/roc-java) provides Java bindings for [Roc Toolkit](https://github.com/roc-streaming/roc-toolkit).
Android app implementing Roc-compatible sender and receiver. See https://github.com/roc-streaming/roc-droid/