fix: Resampler should have correct type

This commit is contained in:
alban 2023-07-20 21:11:57 +02:00
parent 4719dcc430
commit 71fabde385
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ impl TryFrom<u8> for Order {
}
pub type Line = Vec<(f32, f32, u32)>;
pub type Resampler = Vec<(f32,f32)>;
pub type Resampler = Vec<Vec<(f32,f32)>>;
pub struct RedisCtrl {
pub client: Client,