#mmap #streaming #extension #oboe #aaudio #audio #audio-streaming

aloe-oboe-extensions

A Rust crate providing extensions for advanced MMAP control of AAudio streams using the Oboe library. It manages MMAP policies and loads function pointers dynamically for efficient audio streaming configurations. 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

#4 in #audio-streaming


Used in 4 crates

GPL-3.0 license

200KB
1K SLoC

Aloe Oboe Extensions

Aloe Oboe Extensions is a Rust crate that provides advanced extensions for managing AAudio streams using the Oboe library. The implementation includes a suite of tools to manipulate the Memory Mapped (MMAP) data path properties of audio streams, allowing for enhanced audio handling in applications that leverages the Android OpenSL/AAudio audio API.

Features

  • Memory Mapped (MMAP) Policy Management: Control and query MMAP policies to determine support and enablement status at runtime.
  • Dynamic Function Pointer Loading: Dynamically loads AAudio function pointers, ensuring that the usage environment is evaluated at runtime.
  • System Property Interaction: Retrieve integer properties from the system to manage and configure AAudio stream behaviors efficiently.

Technical Details

This crate interfaces with low-level audio management functions to toggle and verify MMAP path capabilities. It abstracts the complexity of interacting directly with Android’s native audio systems, encapsulating functionality that permits robust configuration of audio stream properties.

Primary Struct: OboeAAudioExtensions

This struct contains function pointers and state flags that are critical for determining the support and usage of MMAP features within the audio subsystem. The struct also provides methods to:

  • Determine if MMAP operations are supported.
  • Enable or disable MMAP pathways for streaming operations.
  • Load required symbols dynamically to interface with the necessary audio subsystems.

Usage

Integrating Aloe Oboe Extensions into your Rust project requires a minimal configuration. A typical use case involves instantiating the OboeAAudioExtensions struct and calling its methods to set or query MMAP related properties.

use aloe_oboe_extensions::*;

let mut ext = OboeAAudioExtensions::default();

if ext.is_mmap_supported() {
    match ext.set_mmap_enabled(true) {
        0 => println!("MMAP enabled successfully."),
        _ => println!("Failed to enable MMAP."),
    }
}

By leveraging the OboeAAudioExtensions, developers can fine-tune the audio streaming process, offering application-specific optimizations that can potentially lead to more efficient audio rendering and processing.

License

Licensed under GPL-3.0, Aloe Oboe Extensions is open-source and welcomes contributions via GitHub.


This README.md file was generated by an AI model and may not be 100% accurate, however, it should be pretty good.

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

~39MB
~625K SLoC