#[repr(C)]pub enum SpeakerMapType {
Default = 0,
AllMono = 1,
AllStereo = 2,
_51ProTools = 3,
}
Expand description
When creating a multichannel sound, FMOD will pan them to their default speaker locations:
- For example a 6 channel sound will default to one channel per 5.1 output speaker.
- Another example is a stereo sound. It will default to left = front left, right = front right.
- This is for sounds that are not ‘default’. For example you might have a sound that is 6 channels but actually made up of 3 stereo pairs, that should all be located in front left, front right only.
Variants§
Default = 0
This is the default, and just means FMOD decides which speakers it puts the source channels.
AllMono = 1
This means the sound is made up of all mono sounds. All voices will be panned to the front center by default in this case.
AllStereo = 2
This means the sound is made up of all stereo sounds. All voices will be panned to front left and front right alternating every second channel.
_51ProTools = 3
Map a 5.1 sound to use protools L C R Ls Rs LFE mapping. Will return an error if not a 6 channel sound.
Trait Implementations§
Source§impl Clone for SpeakerMapType
impl Clone for SpeakerMapType
Source§fn clone(&self) -> SpeakerMapType
fn clone(&self) -> SpeakerMapType
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 moreSource§impl Debug for SpeakerMapType
impl Debug for SpeakerMapType
Source§impl PartialEq for SpeakerMapType
impl PartialEq for SpeakerMapType
Source§impl PartialOrd for SpeakerMapType
impl PartialOrd for SpeakerMapType
impl Copy for SpeakerMapType
impl StructuralPartialEq for SpeakerMapType
Auto Trait Implementations§
impl Freeze for SpeakerMapType
impl RefUnwindSafe for SpeakerMapType
impl Send for SpeakerMapType
impl Sync for SpeakerMapType
impl Unpin for SpeakerMapType
impl UnwindSafe for SpeakerMapType
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