FreezyLemon
FreezyLemon
Looking at [codecov](https://app.codecov.io/github/rust-av/matroska/tree/master/src), some things that could have more tests: - [ ] The new EBML macros - [ ] `elements.rs` in general. More specifically, *all* of the Matroska Master...
This is very late, but one way of handling this correctly is: ```rust let f = info.duration.unwrap(); let nanos = f * info.timestamp_scale as f64; let d = Duration::from_nanos(nanos.round() as...
No, it doesn't work either.
Since #108, CRC elements are read and verified for every master element. What's missing now is the "proper" [CRC handling](https://www.rfc-editor.org/rfc/rfc8794.html#section-12-2): > If a Master Element contains a CRC-32 Element that...
Links to the Matroska RFC draft and their GitHub repo are in the README now.
If we're talking about Void Elements within a Master Element, that case is covered as long as the `matroska_permutation` helper is used. Void Elements can also happen [at the Root...
AFAIK, in stable, scores in the resubmission queue are lost if the game is closed or crashes. How about some sort of protection mechanism against that? This would mean pending...
> Anyway, it does seem like Renovate should bump Rust version in package files or rust toolchains by default, if that's the way the Rust ecosystem works? (unlike Go, where...
Skimming through the Docker [tags](https://hub.docker.com/_/rust/tags) for the rust image, it looks like the docker releases are usually a few days/weeks after the real release. I measured the real release date...
I've been playing around with using newer FFmpeg versions (>=5.0) in osu-framework and I noticed that FFmpeg.AutoGen had a major API change at some point. Edit (disregard previous comment version):...