fix: Resampler should have correct type
This commit is contained in:
parent
4719dcc430
commit
71fabde385
1 changed files with 1 additions and 1 deletions
|
|
@ -45,7 +45,7 @@ impl TryFrom<u8> for Order {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub type Line = Vec<(f32, f32, u32)>;
|
pub type Line = Vec<(f32, f32, u32)>;
|
||||||
pub type Resampler = Vec<(f32,f32)>;
|
pub type Resampler = Vec<Vec<(f32,f32)>>;
|
||||||
|
|
||||||
pub struct RedisCtrl {
|
pub struct RedisCtrl {
|
||||||
pub client: Client,
|
pub client: Client,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue