oboe 0.6.1

Safe interface for oboe an android library for low latency audio IO
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use oboe_sys as ffi;

pub trait RawAudioStreamBase {
    fn _raw_base(&self) -> &ffi::oboe_AudioStreamBase;
    fn _raw_base_mut(&mut self) -> &mut ffi::oboe_AudioStreamBase;
}

pub trait RawAudioStream {
    fn _raw_stream(&self) -> &ffi::oboe_AudioStream;
    fn _raw_stream_mut(&mut self) -> &mut ffi::oboe_AudioStream;
}

/// The raw marker for input stream
pub trait RawAudioInputStream {}

/// The raw marker for output stream
pub trait RawAudioOutputStream {}