Skip to content

Commit 7555ede

Browse files
committed
Core - Update Enums (add new values)
1 parent b4fc9d6 commit 7555ede

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

CefSharp/Enums/CefEventFlags.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ public enum CefEventFlags : uint
3333
IsKeyPad = 1 << 9,
3434
IsLeft = 1 << 10,
3535
IsRight = 1 << 11,
36-
AltGrDown = 1 << 12
36+
AltGrDown = 1 << 12,
37+
IsRepeat = 1 << 13,
3738
}
3839
}

CefSharp/Enums/ChannelLayout.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,15 @@ public enum ChannelLayout
181181
/// </summary>
182182
LayoutBitstream = 32,
183183

184+
/// <summary>
185+
/// Front L, Front R, Front C, LFE, Side L, Side R,
186+
/// Front Height L, Front Height R, Rear Height L, Rear Height R
187+
/// Will be represented as six channels (5.1) due to eight channel limit
188+
/// kMaxConcurrentChannels
189+
/// </summary>
190+
Layout5_1_4DownMix = 33,
191+
184192
// Max value, must always equal the largest entry ever logged.
185-
LayoutMax = LayoutBitstream
193+
LayoutMax = Layout5_1_4DownMix
186194
}
187195
}

0 commit comments

Comments
 (0)