mousiki 0.2.1

Pure Rust Opus codec.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! SILK encoder state scaffolding.
//!
//! This module gradually mirrors the encoder-side state structures defined in
//! `silk/structs.h`.  Only the fields required by the already-ported helpers are
//! modelled for now; additional members will be introduced alongside their Rust
//! counterparts.

pub mod control;
pub mod control_flp;
pub mod state;
pub mod state_flp;

pub use control::EncoderControl;
pub use control_flp::EncoderControlFlp;
pub use state::{
    ENCODER_NUM_CHANNELS, Encoder, EncoderChannelState, EncoderStateCommon, VAD_N_BANDS,
};
pub use state_flp::{EncoderShapeStateFlp, EncoderStateFlp};