#smoothing #linear #dsp #audio #exponential

aloe-smoothed-value

A Rust crate for smoothing values in digital signal processing to minimize audio artifacts. Provides linear and multiplicative smoothing strategies, suitable for both linear and logarithmic scale transitions. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.2 Apr 3, 2025

#16 in #exponential


Used in 36 crates (15 directly)

GPL-3.0 license

340KB
3K SLoC

aloe-smoothed-value

aloe-smoothed-value is a Rust crate designed to provide efficient audio processing tools for smoothing numerical values in Digital Signal Processing (DSP) tasks. Specifically, it enables developers to implement both linear and multiplicative smoothing techniques when handling values that require transition smoothing, such as audio signals, to minimize artifacts or glitches.

Features

  • Linear Smoothing: Smooths values linearly, allowing seamless transitions by incrementally moving towards the target value with constant step sizes. This is typically useful for linearly related parameters.

  • Multiplicative Smoothing: Executes smoothing with an exponential or logarithmic approach, ideal for parameters such as frequencies or volume (dB), where values inherently follow a multiplicative scale.

  • Logarithmic Ramp: Facilitates smoothed value transitions where adjustments occur logarithmically, particularly useful for ramping audio parameters that are best perceived on a log scale.

Usage

To use this crate, specify it in your Cargo.toml:

[dependencies]
aloe-smoothed-value = "0.1.0"

Import and deploy the SmoothedValue types:

use aloe_smoothed_value::{LinearSmoothedValue, MultiplicativeSmoothedValue};

let mut smooth_val = LinearSmoothedValue::new(0.0);
smooth_val.set_target_value(1.0);
...
let current_value = smooth_val.get_next_value();

SmoothedValue API

Provides essential operations to define and manage both linear and multiplicative smoothing techniques:

  • set_target_value(new_value): Set a new target value to transition toward.
  • get_next_value(): Compute the next smoothed value towards the target.
  • reset(new_num_steps): Reconfigure the ramp length in number of steps.

LogRampedValue API

Behavior configurable through:

  • set_log_parameters(mid_point_amplitudedb, rate_of_change_should_increase): Control the logarithmic ramp behavior and rate dynamic.

Example

let mut log_smooth = LogRampedValue::new(0.5);
log_smooth.set_log_parameters(-12.0, true);
log_smooth.set_target_value(1.0);
while log_smooth.is_smoothing() {
    let value = log_smooth.get_next_value();
    // Apply `value` in the audio processing loop
}

Contributing

Contributions are welcome. Please refer to the repository's GitHub page for guidelines on opening issues and pull requests.

License

This project is licensed under the terms of the GNU General Public License v3.0 or later.

This README file was generated by an AI model and may not be 100% accurate, however, it should be quite reliable and informative.

This crate is a translation of the JUCE module.

JUCE is a c++ software framework for developing high performance audio applications.

Usage falls under the GPLv3 as well as the JUCE commercial license.

See github.com/juce-framework/JUCE and the JUCE license page for details.

This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.

Dependencies

~14–24MB
~380K SLoC