Made the min/max monitors 160 samples wide and capture 3 seconds of audio now.
This commit is contained in:
parent
97d01f56ea
commit
9a0b135e55
1 changed files with 2 additions and 2 deletions
|
@ -18,10 +18,10 @@ pub const MON_SIG_CNT : usize = 6;
|
|||
const IMAGINARY_MAX_SAMPLE_RATE : usize = 48000;
|
||||
|
||||
/// The number of minmax samples to hold.
|
||||
pub const MONITOR_MINMAX_SAMPLES : usize = 128;
|
||||
pub const MONITOR_MINMAX_SAMPLES : usize = 160;
|
||||
|
||||
/// The length in seconds of the MONITOR_MINMAX_SAMPLES
|
||||
const MONITOR_MINMAX_LEN_S : usize = 2;
|
||||
const MONITOR_MINMAX_LEN_S : usize = 3;
|
||||
|
||||
/// The sleep time of the thread that receives monitoring data
|
||||
/// from the backend/audio thread.
|
||||
|
|
Loading…
Reference in a new issue