aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Enums
diff options
context:
space:
mode:
authorvedant <12881174+viktory36@users.noreply.github.com>2024-03-23 16:39:49 +0300
committerGitHub <noreply@github.com>2024-03-23 07:39:49 -0600
commit3bbb57eb833f2ae0ada312da03ac0e15b6bb1f59 (patch)
treec18c1bf7e133241aceebb2fb902a245e2f9f1764 /Jellyfin.Data/Enums
parent564fdfec93cfb03b987f1afe1f5edbd9160fdc12 (diff)
Add new VideoRangeTypes to fully support DoVi on webOS (#10469)
Diffstat (limited to 'Jellyfin.Data/Enums')
-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