Skip to content

Commit

Permalink
Manual format changes 1
Browse files Browse the repository at this point in the history
  • Loading branch information
AldaronLau committed Oct 14, 2024
1 parent 8f955da commit 2468f06
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions src/audio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
use alloc::{
boxed::Box,
slice::{Iter, IterMut},
vec,
vec::Vec,
vec::{self, Vec},
};
use core::{
convert::TryInto, fmt::Debug, mem::size_of, num::NonZeroU32,
Expand Down
6 changes: 3 additions & 3 deletions src/stream/speex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ macro_rules! algo {
}

impl ResamplerState {
/*
/*
* * Resample a float array. The input and output buffers must *not*
* overlap.
* @param st Resampler state
Expand Down Expand Up @@ -199,7 +199,7 @@ impl ResamplerState {
}
}

/*
/*
* * Make sure that the first samples to go out of the resamplers don't
* have
* leading zeros. This is only useful before starting to use a newly
Expand All @@ -214,7 +214,7 @@ impl ResamplerState {
self.last_sample = filt_len;
}

/*
/*
* * Reset a resampler so a new (unrelated) stream can be processed.
* @param st Resampler state
*/
Expand Down

0 comments on commit 2468f06

Please sign in to comment.