Josh Holmer
Josh Holmer
I was looking into this a bit, and there's only one particular pattern that I found when going through the analyzer, which is present even in the low latency encode....
It looks like there was a bit of this effect present in the source, which let to some red herrings in investigating. The end result we came to is that...
I've attempted this on Arch Linux, with the same rustc and nasm versions, and all tests pass in my case. So it seems like this is probably specific to NixOS.
Rust should guarantee that the worker thread is initialized before it is used. However, that is inside of an unsafe function, so many guarantees are no longer valid. One of...
Looks like this was fixed in https://github.com/rust-lang/rust/issues/92869 and will be released in rustc 1.60.
Wow, this seems much cleaner. Nice!
I noticed the testing between different numbers of segments--the reasoning for the current version using a dynamic number of segments based on the variance of scores within the frame is...
I happened upon this PR in my review queue. Is this still something we want to do? I'm assuming given the time since this PR was created, there's going to...
If you check the [releases page](https://github.com/xiph/rav1e/releases), our CI publishes binaries for each weekly pre-release. Is there something in these releases that is insufficient? Converting all of the ASM in rav1e...
I think the cancellation works properly if you compile without the `signal_hook` feature. Personally I've never been a fan of this feature, if I want to cancel I want it...