| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- using System;
- namespace SoundIOSharp
- {
- public enum SoundIOChannelId
- {
- Invalid = 0,
- FrontLeft = 1,
- FrontRight = 2,
- FrontCenter = 3,
- Lfe = 4,
- BackLeft = 5,
- BackRight = 6,
- FrontLeftCenter = 7,
- FrontRightCenter = 8,
- BackCenter = 9,
- SideLeft = 10,
- SideRight = 11,
- TopCenter = 12,
- TopFrontLeft = 13,
- TopFrontCenter = 14,
- TopFrontRight = 15,
- TopBackLeft = 16,
- TopBackCenter = 17,
- TopBackRight = 18,
- BackLeftCenter = 19,
- BackRightCenter = 20,
- FrontLeftWide = 21,
- FrontRightWide = 22,
- FrontLeftHigh = 23,
- FrontCenterHigh = 24,
- FrontRightHigh = 25,
- TopFrontLeftCenter = 26,
- TopFrontRightCenter = 27,
- TopSideLeft = 28,
- TopSideRight = 29,
- LeftLfe = 30,
- RightLfe = 31,
- Lfe2 = 32,
- BottomCenter = 33,
- BottomLeftCenter = 34,
- BottomRightCenter = 35,
- MsMid = 36,
- MsSide = 37,
- AmbisonicW = 38,
- AmbisonicX = 39,
- AmbisonicY = 40,
- AmbisonicZ = 41,
- XyX = 42,
- XyY = 43,
- HeadphonesLeft = 44,
- HeadphonesRight = 45,
- ClickTrack = 46,
- ForeignLanguage = 47,
- HearingImpaired = 48,
- Narration = 49,
- Haptic = 50,
- DialogCentricMix = 51,
- Aux = 52,
- Aux0 = 53,
- Aux1 = 54,
- Aux2 = 55,
- Aux3 = 56,
- Aux4 = 57,
- Aux5 = 58,
- Aux6 = 59,
- Aux7 = 60,
- Aux8 = 61,
- Aux9 = 62,
- Aux10 = 63,
- Aux11 = 64,
- Aux12 = 65,
- Aux13 = 66,
- Aux14 = 67,
- Aux15 = 68,
- }
- }
|