aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/TonemappingMode.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Entities/TonemappingMode.cs')
-rw-r--r--MediaBrowser.Model/Entities/TonemappingMode.cs34
1 files changed, 34 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/TonemappingMode.cs b/MediaBrowser.Model/Entities/TonemappingMode.cs
new file mode 100644
index 000000000..e10a0b4ad
--- /dev/null
+++ b/MediaBrowser.Model/Entities/TonemappingMode.cs
@@ -0,0 +1,34 @@
+#pragma warning disable SA1300 // Lowercase required for backwards compat.
+
+namespace MediaBrowser.Model.Entities;
+
+/// <summary>
+/// Enum containing tonemapping modes.
+/// </summary>
+public enum TonemappingMode
+{
+ /// <summary>
+ /// Auto.
+ /// </summary>
+ auto = 0,
+
+ /// <summary>
+ /// Max.
+ /// </summary>
+ max = 1,
+
+ /// <summary>
+ /// RGB.
+ /// </summary>
+ rgb = 2,
+
+ /// <summary>
+ /// Lum.
+ /// </summary>
+ lum = 3,
+
+ /// <summary>
+ /// ITP.
+ /// </summary>
+ itp = 4
+}