voxio 0.1.3

A lightweight audio playback engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod engine;
mod error;

pub use engine::Vox;
pub use error::VoxError;

const BUFFER_MS: usize = 150;
const CHANNEL_COUNT: usize = 16;
const PENDING_CAPACITY: usize = 8192;
const RESAMPLER_CHUNK_SIZE: usize = 1024;
const RESAMPLER_SUBCHUNK_SIZE: usize = 2;
const SAMPLE_TAP_CAPACITY: usize = 4096;
const SEEK_PREFILL_MS: usize = 15;
const SEEK_FADE_MS: usize = 30;
const MAX_PROBE_PACKETS: usize = 10;