diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-02-01 16:40:13 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-02-01 16:40:13 +0200 |
| commit | eb2c264422b98458979bc96504ce8830a527d48c (patch) | |
| tree | 2c2e0bcb908867759e7bea31dad0e21bd82f9cff /Software/Visual_Studio/Tango.Video/STGC.cs | |
| parent | a89c18abf7175f76f8673c12dac35d1658209d4e (diff) | |
| download | Tango-eb2c264422b98458979bc96504ce8830a527d48c.tar.gz Tango-eb2c264422b98458979bc96504ce8830a527d48c.zip | |
Added Tango.Video project.
Implemented USB video device capture for developer module.
Diffstat (limited to 'Software/Visual_Studio/Tango.Video/STGC.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Video/STGC.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Video/STGC.cs b/Software/Visual_Studio/Tango.Video/STGC.cs new file mode 100644 index 000000000..79ed936ba --- /dev/null +++ b/Software/Visual_Studio/Tango.Video/STGC.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.Video.DirectShow +{ + [Flags] + internal enum STGC + { + Default = 0, + Overwrite = 1, + OnlyIfCurrent = 2, + DangerouslyCommitMerelyToDiskCache = 4, + Consolidate = 8 + } +} |
