aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/SoundIOChannelId.cs
blob: 002669dcf335f7703a2ee2e1bcbdd8e0c47ea49d (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 SoundIOSharp
{
    public enum SoundIOChannelId
    {
        Invalid,
        FrontLeft,
        FrontRight,
        FrontCenter,
        Lfe,
        BackLeft,
        BackRight,
        FrontLeftCenter,
        FrontRightCenter,
        BackCenter,
        SideLeft,
        SideRight,
        TopCenter,
        TopFrontLeft,
        TopFrontCenter,
        TopFrontRight,
        TopBackLeft,
        TopBackCenter,
        TopBackRight,
        BackLeftCenter,
        BackRightCenter,
        FrontLeftWide,
        FrontRightWide,
        FrontLeftHigh,
        FrontCenterHigh,
        FrontRightHigh,
        TopFrontLeftCenter,
        TopFrontRightCenter,
        TopSideLeft,
        TopSideRight,
        LeftLfe,
        RightLfe,
        Lfe2,
        BottomCenter,
        BottomLeftCenter,
        BottomRightCenter,
        MsMid,
        MsSide,
        AmbisonicW,
        AmbisonicX,
        AmbisonicY,
        AmbisonicZ,
        XyX,
        XyY,
        HeadphonesLeft,
        HeadphonesRight,
        ClickTrack,
        ForeignLanguage,
        HearingImpaired,
        Narration,
        Haptic,
        DialogCentricMix,
        Aux,
        Aux0,
        Aux1,
        Aux2,
        Aux3,
        Aux4,
        Aux5,
        Aux6,
        Aux7,
        Aux8,
        Aux9,
        Aux10,
        Aux11,
        Aux12,
        Aux13,
        Aux14,
        Aux15
    }
}