-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathlib.rs
More file actions
89 lines (80 loc) · 3.13 KB
/
lib.rs
File metadata and controls
89 lines (80 loc) · 3.13 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#[cfg(feature = "sys")]
extern crate libsamplerate_sys;
#[cfg(feature = "pure-rust")]
extern crate libsamplerate;
pub mod converter_type;
pub mod error;
pub mod samplerate;
pub use crate::converter_type::*;
pub use crate::error::*;
pub use crate::samplerate::*;
#[cfg(feature = "sys")]
use libsamplerate_sys::*;
#[cfg(feature = "pure-rust")]
use libsamplerate::*;
use std::ffi::CStr;
/// Perform a simple samplerate conversion of a large chunk of audio.
/// This calls `src_simple` of libsamplerate which is not suitable for streamed audio. Use the
/// `Samplerate` struct instead for this.
///
/// # Example
///
/// ```
/// use samplerate::{convert, ConverterType};
///
/// // Generate a 880Hz sine wave for 1 second in 44100Hz with one channel.
/// let freq = std::f32::consts::PI * 880f32 / 44100f32;
/// let mut input: Vec<f32> = (0..44100).map(|i| (freq * i as f32).sin()).collect();
///
/// // Resample the input from 44100Hz to 48000Hz.
/// let resampled = convert(44100, 48000, 1, ConverterType::SincBestQuality, &input).unwrap();
/// assert_eq!(resampled.len(), 48000);
/// ```
pub fn convert(from_rate: u32, to_rate: u32, channels: usize, converter_type: ConverterType, input: &[f32]) -> Result<Vec<f32>, Error> {
let ratio = to_rate as f64 / from_rate as f64;
let output_len = (ratio * channels as f64 * input.len() as f64) as usize;
let mut output = vec![0f32;output_len];
let mut src = SRC_DATA {
data_in: input.as_ptr(),
data_out: output.as_mut_ptr(),
input_frames: (input.len() as i32).into(),
output_frames: (output_len as i32).into(),
src_ratio: ratio,
end_of_input: 0,
input_frames_used: 0,
output_frames_gen: 0,
..unsafe { std::mem::zeroed() }
};
let error_int = unsafe { src_simple(&mut src as *mut SRC_DATA, converter_type as i32, channels as i32) };
let error_code = ErrorCode::from_int(error_int);
match error_code {
ErrorCode::NoError => Ok(output),
_ => Err(Error::from_code(error_code)),
}
}
/// Returns the version of `libsamplerate` used by this crate as a string.
pub fn version() -> &'static str {
unsafe { CStr::from_ptr(src_get_version()) }.to_str().unwrap()
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn correct_version() {
assert_eq!(version(), "libsamplerate-0.1.9 (c) 2002-2008 Erik de Castro Lopo");
}
#[test]
fn simple_sample_rate_conversion() {
// Setup sample data and storage.
let freq = ::std::f32::consts::PI * 880f32 / 44100f32;
let input: Vec<f32> = (0..44100).map(|i| (freq * i as f32).sin()).collect();
// Convert from 44100Hz to 48000Hz.
let resampled = convert(44100, 48000, 1, ConverterType::SincBestQuality, &input).unwrap();
// Convert back to 44100Hz.
let output = convert(48000, 44100, 1, ConverterType::SincBestQuality, &resampled).unwrap();
// Expect the difference between all input frames and all output frames to be less than
// an epsilon.
let error = input.iter().zip(output).fold(0f32, |max, (input, output)| max.max((input - output).abs()));
assert!(error < 0.002);
}
}