audio-codec-algorithms 0.8.0

Audio codec algorithms: A-law, μ-law and IMA ADPCM
Documentation
[package]
name = "audio-codec-algorithms"
version = "0.8.0"
description = "Audio codec algorithms: A-law, μ-law and IMA ADPCM"
repository = "https://github.com/karip/audio-codec-algorithms"
license = "0BSD OR Apache-2.0"
keywords = ["audio", "A-law", "u-law", "ADPCM"]
categories = ["multimedia::audio", "multimedia::encoding", "no-std", "no-std::no-alloc"]
edition = "2024"
rust-version = "1.87.0"

[dependencies]
no-panic = { version = "0.1.36", optional = true }

[features]
internal-no-panic = ["dep:no-panic"] # no-panic check is only for testing

[dev-dependencies]
criterion = { version = "0.8.2" }

[[bench]]
name = "codec_benchmark"
harness = false