Skip to content

Commit

Permalink
Fix planar linearization
Browse files Browse the repository at this point in the history
  • Loading branch information
awxkee committed Jul 10, 2024
1 parent 36b7d40 commit 02464c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ workspace = { members = ["src/app"] }

[package]
name = "colorutils-rs"
version = "0.4.11"
version = "0.4.12"
edition = "2021"
description = "High performance utilities for color format handling and conversion."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/neon/linear_to_planar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ unsafe fn process_set(
let y0 = transfer_to_gamma(k.0, &function);
let y1 = transfer_to_gamma(k.1, &function);
let y2 = transfer_to_gamma(k.2, &function);
let y3 = transfer_to_gamma(k.2, &function);
let y3 = transfer_to_gamma(k.3, &function);

let y_row01 = vcombine_u16(vqmovn_u32(y0), vqmovn_u32(y1));
let y_row23 = vcombine_u16(vqmovn_u32(y2), vqmovn_u32(y3));
Expand Down

0 comments on commit 02464c3

Please sign in to comment.