pub struct ChunkIn<P, const R: usize>(pub P);Expand description
Fixed-ratio chunk adapter for grouped input.
Adapt a [X; R] -> Y processor to [X; N=R*M]->[Y; M] for any M
by flattening and re-chunking input.
Use this when the inner stage consumes several input samples per output, such as a small decimating FIR kernel. This is a structural regrouping adapter: it does not track stream phase across calls.
See also ChunkOut and ChunkInOut.
§Examples
use dsp_process::{ChunkIn, FnSplitProcess, Process, Split};
let mut p = Split::stateless(ChunkIn::<_, 2>(FnSplitProcess(
|_: &mut (), [a, b]: [i32; 2]| a + b,
)));
assert_eq!(p.process([1, 2, 3, 4]), [3, 7]);Tuple Fields§
§0: PTrait Implementations§
impl<P: Copy, const R: usize> Copy for ChunkIn<P, R>
Source§impl<C: SplitInplace<[X; 1], S>, S, X: Copy, const N: usize> SplitInplace<[X; N], S> for ChunkIn<C, 1>
impl<C: SplitInplace<[X; 1], S>, S, X: Copy, const N: usize> SplitInplace<[X; N], S> for ChunkIn<C, 1>
Auto Trait Implementations§
impl<P, const R: usize> Freeze for ChunkIn<P, R>where
P: Freeze,
impl<P, const R: usize> RefUnwindSafe for ChunkIn<P, R>where
P: RefUnwindSafe,
impl<P, const R: usize> Send for ChunkIn<P, R>where
P: Send,
impl<P, const R: usize> Sync for ChunkIn<P, R>where
P: Sync,
impl<P, const R: usize> Unpin for ChunkIn<P, R>where
P: Unpin,
impl<P, const R: usize> UnsafeUnpin for ChunkIn<P, R>where
P: UnsafeUnpin,
impl<P, const R: usize> UnwindSafe for ChunkIn<P, R>where
P: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<'a, X, S, T, const L: usize> SplitViewInplace<ViewMut<'a, X, FrameMajor, L>, S> for T
impl<'a, X, S, T, const L: usize> SplitViewInplace<ViewMut<'a, X, FrameMajor, L>, S> for T
Source§fn inplace_view(&self, state: &mut S, xy: ViewMut<'a, X, FrameMajor, L>)
fn inplace_view(&self, state: &mut S, xy: ViewMut<'a, X, FrameMajor, L>)
Process one typed view in place.
Source§impl<'a, 'b, X, Y, S, T, const L: usize> SplitViewProcess<View<'a, X, FrameMajor, L>, ViewMut<'b, Y, FrameMajor, L>, S> for T
impl<'a, 'b, X, Y, S, T, const L: usize> SplitViewProcess<View<'a, X, FrameMajor, L>, ViewMut<'b, Y, FrameMajor, L>, S> for T
Source§fn process_view(
&self,
state: &mut S,
x: View<'a, X, FrameMajor, L>,
y: ViewMut<'b, Y, FrameMajor, L>,
)
fn process_view( &self, state: &mut S, x: View<'a, X, FrameMajor, L>, y: ViewMut<'b, Y, FrameMajor, L>, )
Process one typed input view into one typed output view.