1 unstable release
Uses new Rust 2024
new 0.1.1 | Apr 3, 2025 |
---|
#270 in #android
Used in 2 crates
195KB
1K
SLoC
Aloe Oboe Device Quirks
Overview
Aloe Oboe Device Quirks is a Rust library designed for internal use, providing capability to handle device-specific audio quirks. Primarily aimed at Android developers utilizing Rust, the library offers mechanisms for effectively managing audio stream configurations, debugging, and optimizing audio latency issues, especially on Samsung devices equipped with Exynos chips.
Features
- Device Manufacturer Handling: Tailored handling of specific quirks based on device manufacturers, particularly Samsung.
- Audio Stream Management: Efficient management and tuning of audio buffer sizes for low latency streaming.
- Mono and Stereo Channel Handling: Correction for devices where mono can inadvertently be stereo due to device firmware issues.
- Supports MMAP: Conditional utilization of Memory Mapped Audio Protocol for audio streams.
Technical Details
The crate encapsulates several core structs: OboeDeviceQuirks
, SamsungDeviceQuirks
, and OboeQuirksManager
. It focuses on the following:
- Exynos-specific Handling: The
SamsungDeviceQuirks
struct provides logic to accommodate audio issues prevalent in Exynos chipsets, such as timing model glitches and mono/stereo mismatches in certain chipsets. - Low Latency Support: Supports features like clipping of buffer sizes and format conversions for achieving optimal latency levels when streaming audio in Android applications.
Usage
Below is a short template to demonstrate usage patterns for incorporating aloe-oboe-devicequirks
into your application:
use aloe_oboe_devicequirks::{OboeQuirksManager, AudioStreamBuilder};
fn main() {
let mut quirks_manager = OboeQuirksManager::get_instance();
let mut builder = AudioStreamBuilder::new();
if quirks_manager.is_mmap_safe(&mut builder) {
// Code to handle safe MMAP usage
}
}
Contributions
For contributions, bug reports, or feature requests, please refer to the repository.
Note: This README.md 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
~626K SLoC