revorbis/
lib.rs

1mod utils;
2mod bitwise;
3mod scales;
4mod mdct;
5mod drft;
6
7mod headers;
8mod codec;
9mod blocks;
10mod codebook;
11mod floor;
12mod mapping;
13mod residue;
14mod psy;
15mod psy_masking;
16mod bitrate;
17mod envelope;
18mod highlevel;
19
20mod vorbisenc;
21
22pub use utils::*;
23pub use bitwise::*;
24
25pub const PACKETBLOBS: usize = 15;
26
27pub const SHOW_DEBUG: bool = false;
28pub const DEBUG_ON_READ_BITS: bool = false;
29pub const DEBUG_ON_WRITE_BITS: bool = false;
30pub const PANIC_ON_ERROR: bool = false;
31
32mod no_usage;
33
34pub use headers::get_vorbis_headers_from_ogg_packet_bytes;