pub use Vox;
pub use 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;