diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-25 14:10:39 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-25 14:10:39 -0400 |
| commit | 07e230c2eb9524c7c5e8a7fe0a021df3801d40b0 (patch) | |
| tree | 21983cceaac2182392a00a2c44e4bd18c76d1fcb /MediaBrowser.Controller/Entities/Video.cs | |
| parent | 640de9ef790847658c3cf595b5253eaec9ccad86 (diff) | |
Added Video3DFormat property
Diffstat (limited to 'MediaBrowser.Controller/Entities/Video.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Video.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/Video.cs b/MediaBrowser.Controller/Entities/Video.cs index 9df29cdfc..1fef52fa2 100644 --- a/MediaBrowser.Controller/Entities/Video.cs +++ b/MediaBrowser.Controller/Entities/Video.cs @@ -40,6 +40,12 @@ namespace MediaBrowser.Controller.Entities public IsoType? IsoType { get; set; } /// <summary> + /// Gets or sets the video3 D format. + /// </summary> + /// <value>The video3 D format.</value> + public Video3DFormat? Video3DFormat { get; set; } + + /// <summary> /// Gets or sets the format of the video. /// </summary> /// <value>The format of the video.</value> @@ -101,7 +107,7 @@ namespace MediaBrowser.Controller.Entities [IgnoreDataMember] public bool Is3D { - get { return VideoFormat > 0; } + get { return Video3DFormat.HasValue; } } /// <summary> |
