-
-
Notifications
You must be signed in to change notification settings - Fork 457
Expand file tree
/
Copy pathMediaEngineCreateflags.gen.cs
More file actions
31 lines (27 loc) · 993 Bytes
/
MediaEngineCreateflags.gen.cs
File metadata and controls
31 lines (27 loc) · 993 Bytes
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using Silk.NET.Core.Attributes;
#pragma warning disable 1591
namespace Silk.NET.MediaFoundation
{
[Flags]
[NativeName("Name", "MF_MEDIA_ENGINE_CREATEFLAGS")]
public enum MediaEngineCreateFlags : int
{
[NativeName("Name", "")]
None = 0,
[NativeName("Name", "MF_MEDIA_ENGINE_AUDIOONLY")]
Audioonly = 0x1,
[NativeName("Name", "MF_MEDIA_ENGINE_WAITFORSTABLE_STATE")]
WaitforstableState = 0x2,
[NativeName("Name", "MF_MEDIA_ENGINE_FORCEMUTE")]
Forcemute = 0x4,
[NativeName("Name", "MF_MEDIA_ENGINE_REAL_TIME_MODE")]
RealTimeMode = 0x8,
[NativeName("Name", "MF_MEDIA_ENGINE_DISABLE_LOCAL_PLUGINS")]
DisableLocalPlugins = 0x10,
[NativeName("Name", "MF_MEDIA_ENGINE_CREATEFLAGS_MASK")]
CreateflagsMask = 0x1F,
}
}