Skip to content

Audio codec algorithms: A-law and μ-law

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

karip/audio-codec-algorithms

Repository files navigation

Audio Codec Algorithms

Cross-platform tests

Decoding and encoding for few basic audio codecs implemented in Rust:

Features:

  • supports no_std
  • no heap memory allocations
  • no unsafe code
  • no panicking
  • only dependencies for testing: no-panic and criterion

Running the example

Try out decoding and encoding values:

cargo run --example codec-tester decode ulaw 3 130 221
cargo run --example codec-tester encode alaw 10 -5430 3263

Running tests

Run:

# run the tests
cargo test
# ensure good code quality
cargo clippy
# ensure that the release build never panics
cargo test --release --features internal-no-panic

Performance testing:

cargo bench

There is a GitHub Action called "Cross-platform tests" (cross-test.yml), which automatically runs cargo test for little-endian 64-bit x64_86 and big-endian 32-bit PowerPC.

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

About

Audio codec algorithms: A-law and μ-law

Topics

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Languages