diff --git a/MediaBrowser.Model/Entities/MediaStream.cs b/MediaBrowser.Model/Entities/MediaStream.cs
index e7e8d7cec..dd17623bd 100644
--- a/MediaBrowser.Model/Entities/MediaStream.cs
+++ b/MediaBrowser.Model/Entities/MediaStream.cs
@@ -34,8 +34,22 @@ namespace MediaBrowser.Model.Entities
/// The language.
public string Language { get; set; }
+ ///
+ /// Gets or sets the color transfer.
+ ///
+ /// The color transfer.
public string ColorTransfer { get; set; }
+
+ ///
+ /// Gets or sets the color primaries.
+ ///
+ /// The color primaries.
public string ColorPrimaries { get; set; }
+
+ ///
+ /// Gets or sets the color space.
+ ///
+ /// The color space.
public string ColorSpace { get; set; }
///
@@ -44,11 +58,28 @@ namespace MediaBrowser.Model.Entities
/// The comment.
public string Comment { get; set; }
+ ///
+ /// Gets or sets the time base.
+ ///
+ /// The time base.
public string TimeBase { get; set; }
+
+ ///
+ /// Gets or sets the codec time base.
+ ///
+ /// The codec time base.
public string CodecTimeBase { get; set; }
+ ///
+ /// Gets or sets the title.
+ ///
+ /// The title.
public string Title { get; set; }
+ ///
+ /// Gets or sets the video range.
+ ///
+ /// The video range.
public string VideoRange
{
get
@@ -60,7 +91,8 @@ namespace MediaBrowser.Model.Entities
var colorTransfer = ColorTransfer;
- if (string.Equals(colorTransfer, "smpte2084", StringComparison.OrdinalIgnoreCase))
+ if (string.Equals(colorTransfer, "smpte2084", StringComparison.OrdinalIgnoreCase)
+ || string.Equals(colorTransfer, "arib-std-b67", StringComparison.OrdinalIgnoreCase))
{
return "HDR";
}
@@ -70,7 +102,9 @@ namespace MediaBrowser.Model.Entities
}
public string localizedUndefined { get; set; }
+
public string localizedDefault { get; set; }
+
public string localizedForced { get; set; }
public string DisplayTitle