Skip to content

rust-av/speexdsp-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

6b9b4e4 · Jun 14, 2024
Jun 14, 2024
Jan 6, 2023
Jan 6, 2023
Jan 6, 2023
Jun 14, 2024
Jan 8, 2023
Apr 28, 2022
Jan 6, 2023
Mar 15, 2018
Jun 23, 2020
Mar 15, 2018
Aug 22, 2019
Mar 14, 2020

Repository files navigation

speexdsp bindings and c2rust version

LICENSE Actions Status dependency status IRC

It is a simple safe abstraction based on speexdsp.

It is available as binding or as pure-rust implementation.

Building

By default the pure-rust implementation is used, optionally the simd-accelerated original C version can be used instead using the feature sys.

The bindings are generated using the headers and libraries that ought to be present in the system.

  • Make sure you have clang and libclang installed.
  • Make sure the speexdsp C headers and pkg-config files are installed.

TODO

  • Source build speexdsp
  • Simple bindings
  • Safe abstraction
  • Examples
  • Clean pure-rust reimplementation

Testing

Currently we have only an integration test to compare the C and the Rust implementation. To run it issue:

$ cargo test --features=sys