1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#[derive(Clone, Debug, PartialEq)]
pub struct Settings {
pub pad_end: bool,
pub loop_play: bool,
pub mic: bool,
pub sample_rate: f64,
pub yin_buffer_size: usize,
pub buffer_size: usize,
pub probability_threshold: f32,
pub gain_threshold_min: f32,
pub channels: i32,
pub interleaved: bool,
pub max_freq: f64,
pub min_freq: f64,
}
pub const fn default_settings() -> Settings {
Settings {
loop_play: false,
pad_end: true,
mic: false,
sample_rate: 44_100.0,
yin_buffer_size: 2048,
buffer_size: 1024 * 8,
probability_threshold: 0.3,
gain_threshold_min: 0.0,
channels: 2,
interleaved: true,
max_freq: 2_500.0,
min_freq: 20.0,
}
}
pub const fn get_test_settings() -> Settings {
Settings {
buffer_size: 10,
..default_settings()
}
}