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