rav1e icon indicating copy to clipboard operation
rav1e copied to clipboard

The fastest and safest AV1 encoder.

Results 160 rav1e issues
Sort by recently updated
recently updated
newest added

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Update | Change | |---|---| | lockFileMaintenance | All locks refreshed | 🔧 This Pull Request updates lock files to use...

This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. ## Open These updates have all been created already. Click a checkbox below to...

`get_rect_tx_log_ratio` is only used with width & height of `TxSize` (tx is in the name), so it makes sense to make it a `TxSize` method instead. Using `tx_size.width_log2() - 2`...

Request to have CLI option to set different Pixel aspect ratio. Even if y4m input has pixel aspect ratio of 4:3 or 32:27, Rav1e encoded av1 ivf file does not...

Bumps [libgit2-sys](https://github.com/rust-lang/git2-rs) from 0.16.1+1.7.1 to 0.16.2+1.7.2. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=libgit2-sys&package-manager=cargo&previous-version=0.16.1+1.7.1&new-version=0.16.2+1.7.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: #...

dependencies

Command `cargo fetch --locked` fails with `error: the lock file /builds/otlabs/aports/community/rav1e/src/rav1e-0.7.0/Cargo.lock needs to be updated but --locked was passed to prevent this`

bug

**Describe the bug** There are multiple NASM warnings when compiling rav1e with a recent version of NASM (>=2.16, maybe 2.15): ``` cdef_rav1e.asm:262: warning: dropping trailing empty parameter in call to...

bug

For `x86_64` builds of rav1e at the time of opening this issue, there are 212 functions included in assembly that are not referenced by rav1e Rust code. These mostly correspond...

enhancement

It's surprising that crates.io has rav1e 0.6.6, but the master branch reports [0.6.1](https://github.com/xiph/rav1e/blob/e52fb8927df4d4404328230504d86cd6c8e55350/Cargo.toml#L3). I see the version has been updated on the 0.6 branch, but the master branch staying on...

bug

If the `input` is a 2d array, then `width.min(32)` is inappropriate - it will cause a skew instead of narrowing the width. It needs to be something like `input.chunks_exact(width).map(|row| &row[..width.min(32)])`...