#real-time-audio #latency #timing #precision #real-time #real-time-latency

aloe-oboe-audioclock

Aloe Oboe AudioClock provides precise audio timing operations, including nanosecond-level sleep functions and stream latency calculations for real-time systems. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.1 Apr 3, 2025

#27 in #real-time-audio


Used in aloe-oboe

GPL-3.0 license

36KB
215 lines

Aloe Oboe AudioClock

Aloe Oboe AudioClock is an advanced Rust crate designed to facilitate precise audio timing operations. Its primary focus is on stream latency calculation and control over microsecond and nanosecond sleep durations in real-time systems. By providing utilities for accessing high-resolution timing via the AudioClock structure, users can schedule, synchronize, and measure audio processing tasks with enhanced accuracy.

Features

  • High-Resolution Timing: Retrieve time in nanoseconds using get_nanoseconds, supporting both custom and default clocks.
  • Scheduling: Utilize sleep_until_nano_time to pause execution until a specified real-time point is reached, minimizing drift and delay.
  • Precision Sleep: Leverage sleep_for_nanos for precise control over thread sleep durations.

API Overview

AudioClock struct offers core functionality, targeting applications sensitive to timing drift in audio streams. Applying advanced sleep and timing functions ensures the maintenance of timing accuracy and consistency across diverse platforms.

Example

let nanoseconds = AudioClock::get_nanoseconds(Some(42));
AudioClock::sleep_until_nano_time(nanoseconds + 1_000_000, None);

This illustrative example demonstrates how to obtain current time and schedule a sleep operation for enhanced stream manipulation.

Use Cases

Ideal for real-time audio stream processing, timing-sensitive tasks, and precise latency management in sound engineering applications.


Please note: This README.md file was generated by an AI model and may not be 100% accurate; however, it should provide a solid foundation.

Licensing

Licensed under GPL-3.0.

Contribution

Issues and pull request contributions are welcome in the GitHub repository.

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

~13–23MB
~371K SLoC