-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathInputType.cs
43 lines (42 loc) · 882 Bytes
/
InputType.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace vMixAPI
{
/*DEPRECATED*/
public enum InputType
{
Video = 0,
Image = 1,
Photos = 2,
PowerPoint = 3,
DVD = 4,
Capture = 5,
DesktopCapture = 6,
Audio = 7,
Flash = 8,
Xaml = 9,
VideoDelay = 10,
Title = 11,
Colour = 12,
AudioFile = 13,
VideoList = 14,
VirtualSet = 15,
VideoLoop = 16,
Stream = 20,
ImageSequence = 21,
Virtual = 22,
Blank = 100,
Signal = 1000,
Placeholder = 2000,
Replay = 3000,
ReplayPreview = 3001,
ReplayOverlay = 3002,
NDI = 4000,
Browser = 5000,
VideoCall = 6000,
VLC = 7000,
}
}