Skip to content

Commit 4d2a452

Browse files
committed
style: cargo fmt
Trailing fmt-only cleanup from dropping the _token: SimdToken parameter in 1656710 — the signature collapses to one line.
1 parent ca1c158 commit 4d2a452

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

src/dct.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,7 @@ fn descale(x: i32, n: i32) -> i32 {
6363
/// * `samples` - Input 8x8 block of pixel samples (typically centered around 0)
6464
/// * `coeffs` - Output 8x8 block of DCT coefficients
6565
#[autoversion]
66-
pub fn forward_dct_8x8_i32_multiversion(
67-
samples: &[i16; DCTSIZE2],
68-
coeffs: &mut [i16; DCTSIZE2],
69-
) {
66+
pub fn forward_dct_8x8_i32_multiversion(samples: &[i16; DCTSIZE2], coeffs: &mut [i16; DCTSIZE2]) {
7067
// Work buffer (we modify in place across both passes)
7168
let mut data = [0i32; DCTSIZE2];
7269

0 commit comments

Comments
 (0)