Skip to content

Commit

Permalink
Bump rav1e
Browse files Browse the repository at this point in the history
  • Loading branch information
kornelski committed Jan 5, 2024
1 parent e7e743a commit e21beb9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ravif/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ravif"
description = "rav1e-based pure Rust library for encoding images in AVIF format (powers the `cavif` tool)"
version = "0.11.3"
version = "0.11.4"
authors = ["Kornel Lesiński <[email protected]>"]
edition = "2021"
license = "BSD-3-Clause"
Expand All @@ -14,7 +14,7 @@ include = ["README.md", "LICENSE", "Cargo.toml", "/src/*.rs"]

[dependencies]
avif-serialize = "0.8.1"
rav1e = { version = "0.6.6", default-features = false, features = ["threading"] }
rav1e = { version = "0.7", default-features = false, features = ["threading"] }
rayon = "1.7.0"
rgb = "0.8.36"
imgref = "1.9.4"
Expand Down
2 changes: 1 addition & 1 deletion ravif/src/av1encoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ impl SpeedTweaks {
if let Some(v) = self.fine_directional_intra { speed_settings.prediction.fine_directional_intra = v; }
if let Some(v) = self.complex_prediction_modes { speed_settings.prediction.prediction_modes = if v { PredictionModesSetting::ComplexAll } else { PredictionModesSetting::Simple} };
if let Some((min, max)) = self.partition_range {
assert!(min <= max);
debug_assert!(min <= max);
fn sz(s: u8) -> BlockSize {
match s {
4 => BlockSize::BLOCK_4X4,
Expand Down

0 comments on commit e21beb9

Please sign in to comment.