1
0
Fork 0

Mention all channel lengths being equal

This commit is contained in:
Robbert van der Helm 2022-01-29 16:45:33 +01:00
parent 47d102f2ba
commit edab467538

View file

@ -80,7 +80,7 @@ pub trait Plugin: Default + Sync {
/// Process audio. To not have to worry about aliasing, the host's input buffer have already /// Process audio. To not have to worry about aliasing, the host's input buffer have already
/// been copied to the output buffers if they are not handling buffers in place (most hosts do /// been copied to the output buffers if they are not handling buffers in place (most hosts do
/// however). /// however). All channels are also guarenteed to contain the same number of samples.
/// ///
/// TODO: &mut [&mut [f32]] may not be the correct type here /// TODO: &mut [&mut [f32]] may not be the correct type here
/// TODO: Provide a way to access auxiliary input channels if the IO configuration is /// TODO: Provide a way to access auxiliary input channels if the IO configuration is