aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Enums/VideoRangeType.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Data/Enums/VideoRangeType.cs')
-rw-r--r--Jellyfin.Data/Enums/VideoRangeType.cs17
1 files changed, 16 insertions, 1 deletions
diff --git a/Jellyfin.Data/Enums/VideoRangeType.cs b/Jellyfin.Data/Enums/VideoRangeType.cs
index 7ac7bc20a..853c2c73d 100644
--- a/Jellyfin.Data/Enums/VideoRangeType.cs
+++ b/Jellyfin.Data/Enums/VideoRangeType.cs
@@ -26,11 +26,26 @@ public enum VideoRangeType
HLG,
/// <summary>
- /// Dolby Vision video range type (12bit).
+ /// Dolby Vision video range type (10bit encoded / 12bit remapped).
/// </summary>
DOVI,
/// <summary>
+ /// Dolby Vision with HDR10 video range fallback (10bit).
+ /// </summary>
+ DOVIWithHDR10,
+
+ /// <summary>
+ /// Dolby Vision with HLG video range fallback (10bit).
+ /// </summary>
+ DOVIWithHLG,
+
+ /// <summary>
+ /// Dolby Vision with SDR video range fallback (8bit / 10bit).
+ /// </summary>
+ DOVIWithSDR,
+
+ /// <summary>
/// HDR10+ video range type (10bit to 16bit).
/// </summary>
HDR10Plus