├── .editorconfig ├── .github └── workflows │ └── lewton.yml ├── .gitignore ├── .rustfmt.toml ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── cbindgen.toml ├── dev └── cmp │ ├── Cargo.toml │ ├── src │ ├── lib.rs │ └── main.rs │ └── tests │ ├── fuzzed.rs │ └── vals.rs ├── examples ├── perf.rs └── player.rs └── src ├── audio.rs ├── bitpacking.rs ├── capi.rs ├── header.rs ├── header_cached.rs ├── huffman_tree.rs ├── imdct.rs ├── imdct_test.rs ├── inside_ogg.rs ├── lib.rs └── samples.rs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/lewton.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/.github/workflows/lewton.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | *swp 3 | callgrind.out.* 4 | test-assets 5 | -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/.rustfmt.toml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/README.md -------------------------------------------------------------------------------- /cbindgen.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/cbindgen.toml -------------------------------------------------------------------------------- /dev/cmp/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/dev/cmp/Cargo.toml -------------------------------------------------------------------------------- /dev/cmp/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/dev/cmp/src/lib.rs -------------------------------------------------------------------------------- /dev/cmp/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/dev/cmp/src/main.rs -------------------------------------------------------------------------------- /dev/cmp/tests/fuzzed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/dev/cmp/tests/fuzzed.rs -------------------------------------------------------------------------------- /dev/cmp/tests/vals.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/dev/cmp/tests/vals.rs -------------------------------------------------------------------------------- /examples/perf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/examples/perf.rs -------------------------------------------------------------------------------- /examples/player.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/examples/player.rs -------------------------------------------------------------------------------- /src/audio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/src/audio.rs -------------------------------------------------------------------------------- /src/bitpacking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/src/bitpacking.rs -------------------------------------------------------------------------------- /src/capi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/src/capi.rs -------------------------------------------------------------------------------- /src/header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/src/header.rs -------------------------------------------------------------------------------- /src/header_cached.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/src/header_cached.rs -------------------------------------------------------------------------------- /src/huffman_tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/src/huffman_tree.rs -------------------------------------------------------------------------------- /src/imdct.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/src/imdct.rs -------------------------------------------------------------------------------- /src/imdct_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/src/imdct_test.rs -------------------------------------------------------------------------------- /src/inside_ogg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/src/inside_ogg.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/samples.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustAudio/lewton/HEAD/src/samples.rs --------------------------------------------------------------------------------