aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoChannelId.cs
blob: 70346e0bff91d2755296b7276c00972e1f88ce44 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
namespace Ryujinx.Audio.Backends.SoundIo.Native
{
    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,
    }
}