-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
AsioMessageSelector.cs
70 lines (70 loc) · 2.02 KB
/
AsioMessageSelector.cs
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
// ReSharper disable InconsistentNaming
namespace NAudio.Wave.Asio
{
/// <summary>
/// ASIO Message Selector
/// </summary>
public enum AsioMessageSelector
{
/// <summary>
/// selector in <value>, returns 1L if supported,
/// </summary>
kAsioSelectorSupported = 1,
/// <summary>
/// returns engine (host) asio implementation version,
/// </summary>
kAsioEngineVersion,
/// <summary>
/// request driver reset. if accepted, this
/// </summary>
kAsioResetRequest,
/// <summary>
/// not yet supported, will currently always return 0L.
/// </summary>
kAsioBufferSizeChange,
/// <summary>
/// the driver went out of sync, such that
/// </summary>
kAsioResyncRequest,
/// <summary>
/// the drivers latencies have changed. The engine
/// </summary>
kAsioLatenciesChanged,
/// <summary>
/// if host returns true here, it will expect the
/// </summary>
kAsioSupportsTimeInfo,
/// <summary>
/// supports timecode
/// </summary>
kAsioSupportsTimeCode,
/// <summary>
/// unused - value: number of commands, message points to mmc commands
/// </summary>
kAsioMMCCommand,
/// <summary>
/// kAsioSupportsXXX return 1 if host supports this
/// </summary>
kAsioSupportsInputMonitor,
/// <summary>
/// unused and undefined
/// </summary>
kAsioSupportsInputGain,
/// <summary>
/// unused and undefined
/// </summary>
kAsioSupportsInputMeter,
/// <summary>
/// unused and undefined
/// </summary>
kAsioSupportsOutputGain,
/// <summary>
/// unused and undefined
/// </summary>
kAsioSupportsOutputMeter,
/// <summary>
/// driver detected an overload
/// </summary>
kAsioOverload,
}
}