mousiki 0.1.0

Pure Rust Opus decoder.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod codebook;
pub mod decoder;
pub mod icdf;

#[derive(Debug, Clone, Copy, PartialEq)]
pub enum FrameSignalType {
    Inactive,
    Unvoiced,
    Voiced,
}

#[derive(Debug, Clone, Copy, PartialEq)]
pub enum FrameQuantizationOffsetType {
    Low,
    High,
}