Skip to content

Commit

Permalink
add missing pub
Browse files Browse the repository at this point in the history
  • Loading branch information
HEnquist committed Jan 3, 2025
1 parent 1b6d13b commit ca16989
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/biquad.rs
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ impl Biquad {

/// Process a single sample, SSE2 version
#[cfg(all(target_arch = "x86_64", not(feature = "32bit")))]
fn process_single(&mut self, input: PrcFmt) -> PrcFmt {
pub fn process_single(&mut self, input: PrcFmt) -> PrcFmt {
unsafe {
// load input
let input_input = _mm_load1_pd(&input);
Expand Down

0 comments on commit ca16989

Please # to comment.