FreezyLemon
FreezyLemon
ffmpeg-sys already has the `avutil` subdirectory where some things from libavutil are ported to Rust because bindgen can't find or translate them (e.g. static function implementations in headers, function-like macros...
[FFmpeg versions in Ubuntu repositories, for reference](https://packages.ubuntu.com/search?keywords=ffmpeg) Dropping support for older FFmpeg versions would reduce the maintenance burden significantly. 5.0 (early 2022) in particular dropped a lot of legacy cruft,...
Potential option for #11. For every scale, we first convert to Xyb (which uses the same `data: Vec` as `LinearRgb`) and then to a planar data representation. Instead of a...
The rayon feature is useful, but can be harmful to performance in some circumstances: rust-av/ssimulacra2_bin#21 There might be a better way of splitting work across threads that integrates itself better...
The changes in this PR are the additions needed to implement the proposal as a usable API. More things might need to be added later. Breaking changes are described below...
Since #3348, CI can't upload codecov stats for the master branch: > Error: Codecov token not found. Please provide Codecov token with -t flag. [example run](https://github.com/xiph/rav1e/actions/runs/8158956978/job/22302080855) The [codecov repo](https://github.com/codecov/codecov-action) mentions...
`cargo c -F desync_finder` on latest master fails with >50 errors. The errors seem to be mostly two issues: 1. `WriterBase` calling functions that aren't `const` inside a const context...
See [this run](https://github.com/shssoichiro/ffmpeg-the-third/actions/runs/9203940380) (success) and [this run](https://github.com/shssoichiro/ffmpeg-the-third/actions/runs/9298680747) (failure). Both run on the same commit, so something might've changed with the CI image or homebrew package.
Closes #856. Closes #821. I only have a slow laptop at the moment. Can someone else please test this change? This is a quick bandaid over `--vmaf-path` not working in...
There's a note about a "temp fix" in the GHA workflow file: https://github.com/master-of-zen/Av1an/blob/6d2325d99cb38f53bb3f1c60dc5e1106d49735da/.github/workflows/tests.yml#L262-L279 The linked issue hasn't really seen any action since 2021, maybe 2020, but there are some alternative...