├── .gitignore ├── .gitmodules ├── Cargo.toml ├── LICENSE ├── README.md ├── examples ├── enumerate.rs ├── handle_error.rs ├── loopback.rs └── playback_sine.rs ├── rtaudio-sys ├── Cargo.toml ├── README.md ├── build.rs └── src │ └── lib.rs └── src ├── buffer.rs ├── device_info.rs ├── enums.rs ├── error.rs ├── host.rs ├── lib.rs ├── options.rs └── stream.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeadowlarkDAW/rtaudio-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeadowlarkDAW/rtaudio-rs/HEAD/.gitmodules -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeadowlarkDAW/rtaudio-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeadowlarkDAW/rtaudio-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeadowlarkDAW/rtaudio-rs/HEAD/README.md -------------------------------------------------------------------------------- /examples/enumerate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeadowlarkDAW/rtaudio-rs/HEAD/examples/enumerate.rs -------------------------------------------------------------------------------- /examples/handle_error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeadowlarkDAW/rtaudio-rs/HEAD/examples/handle_error.rs -------------------------------------------------------------------------------- /examples/loopback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeadowlarkDAW/rtaudio-rs/HEAD/examples/loopback.rs -------------------------------------------------------------------------------- /examples/playback_sine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeadowlarkDAW/rtaudio-rs/HEAD/examples/playback_sine.rs -------------------------------------------------------------------------------- /rtaudio-sys/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeadowlarkDAW/rtaudio-rs/HEAD/rtaudio-sys/Cargo.toml -------------------------------------------------------------------------------- /rtaudio-sys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeadowlarkDAW/rtaudio-rs/HEAD/rtaudio-sys/README.md -------------------------------------------------------------------------------- /rtaudio-sys/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeadowlarkDAW/rtaudio-rs/HEAD/rtaudio-sys/build.rs -------------------------------------------------------------------------------- /rtaudio-sys/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeadowlarkDAW/rtaudio-rs/HEAD/rtaudio-sys/src/lib.rs -------------------------------------------------------------------------------- /src/buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeadowlarkDAW/rtaudio-rs/HEAD/src/buffer.rs -------------------------------------------------------------------------------- /src/device_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeadowlarkDAW/rtaudio-rs/HEAD/src/device_info.rs -------------------------------------------------------------------------------- /src/enums.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeadowlarkDAW/rtaudio-rs/HEAD/src/enums.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeadowlarkDAW/rtaudio-rs/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/host.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeadowlarkDAW/rtaudio-rs/HEAD/src/host.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeadowlarkDAW/rtaudio-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeadowlarkDAW/rtaudio-rs/HEAD/src/options.rs -------------------------------------------------------------------------------- /src/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeadowlarkDAW/rtaudio-rs/HEAD/src/stream.rs --------------------------------------------------------------------------------