rawdio 0.14.0

An Audio Engine, inspired by the Web Audio API
Documentation
#![feature(portable_simd)]
#![warn(missing_docs)]

//! rawdio is an audio engine that is inspired by the Web Audio API
//!  
//! You can use it to:
//! - Create a context
//! - Create DSP nodes
//! - Connect the nodes together
//! - Accurately schedule 'events'
//! - Process the graph with an input and an output
//!
//! # Example
//!
//! ```rust
//! use rawdio::{connect_nodes, create_engine, AudioProcess, Context, Oscillator, OwnedAudioBuffer};
//!
//! let (mut context, mut process) = create_engine();
//!
//! let frequency = 1_000.0;
//! let channel_count = 2;
//! let oscillator = Oscillator::sine(context.as_ref(), frequency, channel_count);
//!
//! connect_nodes!(oscillator => "output");
//!
//! context.start();
//!
//! // Call `process.process(...)`, passing in the input samples, and using the output
//! // If you wish to use with your sound card, you could use something like cpal (see the examples)
//! ```

#[macro_use]
extern crate approx;

mod buffer;
mod commands;
mod dsp;
mod effects;
mod engine;
mod graph;
mod parameter;
mod realtime;
mod utility;

pub use buffer::AudioBuffer;
pub use buffer::BorrowedAudioBuffer;
pub use buffer::MutableBorrowedAudioBuffer;
pub use buffer::OwnedAudioBuffer;
pub use buffer::SampleLocation;

pub use effects::Adsr;
pub use effects::Biquad;
pub use effects::BiquadFilterType;
pub use effects::Compressor;
pub use effects::Convolution;
pub use effects::Envelope;
pub use effects::Gain;
pub use effects::Mixer;
pub use effects::Oscillator;
pub use effects::Pan;
pub use effects::Recorder;
pub use effects::Sampler;
pub use effects::Waveshaper;

pub use engine::create_engine;
pub use engine::create_engine_with_options;
pub use engine::AudioProcess;
pub(crate) use engine::CommandQueue;
pub use engine::Context;
pub use engine::EngineOptions;

pub(crate) use graph::DspNode;
pub use graph::GraphNode;
pub use graph::ProcessContext;

pub use parameter::AudioParameter;
pub(crate) use parameter::Parameters;

pub use utility::Level;
pub use utility::Timestamp;

/// Module to re-export commonly used types
pub mod prelude {
    pub use crate::{
        connect_nodes, create_engine, create_engine_with_options, AudioBuffer, AudioParameter,
        AudioProcess, BorrowedAudioBuffer, Context, EngineOptions, GraphNode, Level,
        MutableBorrowedAudioBuffer, OwnedAudioBuffer, SampleLocation, Timestamp,
    };
}