blob: b90907834c1e79a70a862006dd365ef988b93b9e (
plain)
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
|
extern crate codec2_sys as ffi;
pub enum Modes {
Mode1400 = ffi::CODEC2_MODE_1400 as isize,
}
pub struct Codec2(*mut ffi::CODEC2);
impl Codec2 {
pub fn new() -> Self {
let mode = ffi::CODEC2_MODE_1400.try_into().unwrap();
let c = unsafe { ffi::codec2_create(mode) };
if c.is_null() {
panic!("error")
}
Codec2(c)
}
pub fn destroy(&self) {
unsafe { ffi::codec2_destroy(self.0) }
}
pub fn samples_per_frame(&self) -> usize {
unsafe { ffi::codec2_samples_per_frame(self.0).try_into().unwrap() }
}
pub fn bytes_per_frame(&self) -> usize {
unsafe { ffi::codec2_bytes_per_frame(self.0).try_into().unwrap() }
}
/// Encode an array of speech samples into an array of bits
pub fn encode(&self, speech: &[i16], bits: &mut [u8]) {
let nsamples = self.samples_per_frame();
let nbits = self.bytes_per_frame();
if speech.len() != nsamples {
panic!(
"Samples buffer must be of length {}, got {}",
nsamples,
speech.len()
);
}
if bits.len() != nbits {
panic!(
"Bits buffer must be of length {}, got {}",
nbits,
bits.len()
);
}
unsafe {
ffi::codec2_encode(self.0, bits.as_ptr() as *mut _, speech.as_ptr() as *mut _);
}
}
}
impl Drop for Codec2 {
fn drop(&mut self) {
self.destroy();
}
}
#[cfg(test)]
mod tests {
use super::Codec2;
#[test]
fn it_works() {
let _c = Codec2::new();
let result = 2 + 2;
assert_eq!(result, 4);
}
}
|