#[repr(C)]pub struct IPLAmbisonicsDecodeEffectParams {
pub order: IPLint32,
pub hrtf: IPLHRTF,
pub orientation: IPLCoordinateSpace3,
pub binaural: IPLbool,
}Expand description
Parameters for applying an Ambisonics decode effect to an audio buffer.
Fields§
§order: IPLint32Ambisonic order of the input buffer. May be less than the \c maxOrder specified when creating the effect, in which case the effect will process fewer input channels, reducing CPU usage.
hrtf: IPLHRTFThe HRTF to use.
orientation: IPLCoordinateSpace3The orientation of the listener.
binaural: IPLboolWhether to use binaural rendering or panning.
Trait Implementations§
Source§impl Clone for IPLAmbisonicsDecodeEffectParams
impl Clone for IPLAmbisonicsDecodeEffectParams
Source§fn clone(&self) -> IPLAmbisonicsDecodeEffectParams
fn clone(&self) -> IPLAmbisonicsDecodeEffectParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for IPLAmbisonicsDecodeEffectParams
Auto Trait Implementations§
impl Freeze for IPLAmbisonicsDecodeEffectParams
impl RefUnwindSafe for IPLAmbisonicsDecodeEffectParams
impl !Send for IPLAmbisonicsDecodeEffectParams
impl !Sync for IPLAmbisonicsDecodeEffectParams
impl Unpin for IPLAmbisonicsDecodeEffectParams
impl UnwindSafe for IPLAmbisonicsDecodeEffectParams
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more