2022-03-04 09:34:06 +11:00
|
|
|
//! General conversion functions and utilities.
|
|
|
|
|
2022-01-26 21:48:40 +11:00
|
|
|
pub const MINUS_INFINITY_DB: f32 = -100.0;
|
|
|
|
|
2022-01-26 21:57:47 +11:00
|
|
|
/// Convert decibels to a voltage gain ratio, treating anything below -100 dB as minus infinity.
|
2022-01-26 21:48:40 +11:00
|
|
|
pub fn db_to_gain(dbs: f32) -> f32 {
|
|
|
|
if dbs > MINUS_INFINITY_DB {
|
|
|
|
10.0f32.powf(dbs * 0.05)
|
|
|
|
} else {
|
|
|
|
0.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-26 21:57:47 +11:00
|
|
|
/// Convert a voltage gain ratio to decibels. Gain ratios that aren't positive will be treated as
|
2022-03-04 09:05:01 +11:00
|
|
|
/// [`MINUS_INFINITY_DB`].
|
2022-01-26 21:57:47 +11:00
|
|
|
pub fn gain_to_db(gain: f32) -> f32 {
|
|
|
|
if gain > 0.0 {
|
|
|
|
gain.log10() * 20.0
|
|
|
|
} else {
|
|
|
|
MINUS_INFINITY_DB
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-04 12:37:40 +11:00
|
|
|
/// Convert a MIDI note ID to a frequency at A4 = 440 Hz equal temperament and middle C = note 60 =
|
|
|
|
/// C4.
|
|
|
|
pub fn midi_note_to_freq(pitch: u8) -> f32 {
|
|
|
|
2.0f32.powf((pitch as f32 - 69.0) / 12.0) * 440.0
|
|
|
|
}
|
|
|
|
|
2022-01-26 21:48:40 +11:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_db_to_gain_positive() {
|
|
|
|
assert_eq!(db_to_gain(3.0), 1.4125376);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_db_to_gain_negative() {
|
|
|
|
assert_eq!(db_to_gain(-3.0), 1.4125376f32.recip());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_db_to_gain_minus_infinity() {
|
|
|
|
assert_eq!(db_to_gain(-100.0), 0.0);
|
|
|
|
}
|
2022-01-26 21:57:47 +11:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_gain_to_db_positive() {
|
|
|
|
assert_eq!(gain_to_db(4.0), 12.041201);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_gain_to_db_negative() {
|
|
|
|
assert_eq!(gain_to_db(0.25), -12.041201);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_gain_to_db_minus_infinity_zero() {
|
|
|
|
assert_eq!(gain_to_db(0.0), MINUS_INFINITY_DB);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_gain_to_db_minus_infinity_negative() {
|
|
|
|
assert_eq!(gain_to_db(-2.0), MINUS_INFINITY_DB);
|
|
|
|
}
|
2022-01-26 21:48:40 +11:00
|
|
|
}
|