Struct xsynth_render::XSynthRenderConfig

source ·
pub struct XSynthRenderConfig {
    pub channel_init_options: ChannelInitOptions,
    pub sf_init_options: SoundfontInitOptions,
    pub channel_count: u32,
    pub drums_channels: Vec<u32>,
    pub use_threadpool: bool,
    pub use_limiter: bool,
    pub sample_rate: u32,
    pub audio_channels: u16,
    pub audio_format: XSynthRenderAudioFormat,
}
Expand description

Options for initializing a new XSynthRender object.

Fields§

§channel_init_options: ChannelInitOptions

Channel initialization options (same for all channels). See the ChannelInitOptions documentation for more information.

§sf_init_options: SoundfontInitOptions

Soundfont initialization options (same for all soundfonts). See the SoundfontInitOptions documentation for more information.

§channel_count: u32

Amount of VoiceChannel objects to be created (Number of MIDI channels)

Default: 16

§drums_channels: Vec<u32>

A vector which specifies which of the created channels (indexes) will be used for drums. For example in a conventional 16 MIDI channel setup where channel 10 is used for drums, the vector would be set as [9] (counting from 0).

Default: [9]

§use_threadpool: bool

Whether or not to use a threadpool to render individual keys’ voices. Regardless, each MIDI channel uses its own thread. This setting adds more fine-grained threading per key rather than per channel.

Default: true

§use_limiter: bool

If set to true, the rendered audio will be limited to 0dB using the VolumeLimiter effect from core to prevent clipping.

Default: true

§sample_rate: u32

Audio output sample rate.

Default: 48000

§audio_channels: u16

Audio output audio channels.

Default: 2

§audio_format: XSynthRenderAudioFormat

Audio output format.

Default: Wav

Trait Implementations§

source§

impl Clone for XSynthRenderConfig

source§

fn clone(&self) -> XSynthRenderConfig

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Default for XSynthRenderConfig

source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<F, T> IntoSample<T> for F
where T: FromSample<F>,

source§

fn into_sample(self) -> T

source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.