aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/MediaStream.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Entities/MediaStream.cs')
-rw-r--r--MediaBrowser.Model/Entities/MediaStream.cs10
1 files changed, 8 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Entities/MediaStream.cs b/MediaBrowser.Model/Entities/MediaStream.cs
index 838095832..7be8a64b7 100644
--- a/MediaBrowser.Model/Entities/MediaStream.cs
+++ b/MediaBrowser.Model/Entities/MediaStream.cs
@@ -33,7 +33,7 @@ namespace MediaBrowser.Model.Entities
/// </summary>
/// <value>The channel layout.</value>
public string ChannelLayout { get; set; }
-
+
/// <summary>
/// Gets or sets the bit rate.
/// </summary>
@@ -155,11 +155,17 @@ namespace MediaBrowser.Model.Entities
/// </summary>
/// <value>The pixel format.</value>
public string PixelFormat { get; set; }
-
+
/// <summary>
/// Gets or sets the level.
/// </summary>
/// <value>The level.</value>
public double? Level { get; set; }
+
+ /// <summary>
+ /// Gets a value indicating whether this instance is anamorphic.
+ /// </summary>
+ /// <value><c>true</c> if this instance is anamorphic; otherwise, <c>false</c>.</value>
+ public bool? IsAnamorphic { get; set; }
}
}