We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca1c158 commit 4d2a452Copy full SHA for 4d2a452
1 file changed
src/dct.rs
@@ -63,10 +63,7 @@ fn descale(x: i32, n: i32) -> i32 {
63
/// * `samples` - Input 8x8 block of pixel samples (typically centered around 0)
64
/// * `coeffs` - Output 8x8 block of DCT coefficients
65
#[autoversion]
66
-pub fn forward_dct_8x8_i32_multiversion(
67
- samples: &[i16; DCTSIZE2],
68
- coeffs: &mut [i16; DCTSIZE2],
69
-) {
+pub fn forward_dct_8x8_i32_multiversion(samples: &[i16; DCTSIZE2], coeffs: &mut [i16; DCTSIZE2]) {
70
// Work buffer (we modify in place across both passes)
71
let mut data = [0i32; DCTSIZE2];
72
0 commit comments