diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-07-11 16:24:32 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-07-11 16:24:32 -0400 |
| commit | 45b995def724828e4e48cffea482dd2aa9c89c26 (patch) | |
| tree | 7309a0a8f759cc73421225afdeb7440a42b767a4 | |
| parent | 24bb7c393f55901f779c79088b35304cb1cdc855 (diff) | |
removed video format
| -rw-r--r-- | MediaBrowser.Controller/Entities/Video.cs | 13 | ||||
| -rw-r--r-- | MediaBrowser.Model/Entities/VideoFormat.cs | 14 | ||||
| -rw-r--r-- | MediaBrowser.Model/MediaBrowser.Model.csproj | 1 |
3 files changed, 0 insertions, 28 deletions
diff --git a/MediaBrowser.Controller/Entities/Video.cs b/MediaBrowser.Controller/Entities/Video.cs index 509859512..78f4e3fc2 100644 --- a/MediaBrowser.Controller/Entities/Video.cs +++ b/MediaBrowser.Controller/Entities/Video.cs @@ -27,19 +27,6 @@ namespace MediaBrowser.Controller.Entities AdditionalPartIds = new List<Guid>(); } - public VideoFormat VideoFormat - { - get - { - if (!Video3DFormat.HasValue) - { - return VideoFormat.Standard; - } - - return VideoFormat.Digital3D; - } - } - /// <summary> /// Gets or sets the type of the video. /// </summary> diff --git a/MediaBrowser.Model/Entities/VideoFormat.cs b/MediaBrowser.Model/Entities/VideoFormat.cs deleted file mode 100644 index 8dfd9573c..000000000 --- a/MediaBrowser.Model/Entities/VideoFormat.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; - -namespace MediaBrowser.Model.Entities -{ - public enum VideoFormat - { - Standard, - Digital3D, - Sbs3D - } -} diff --git a/MediaBrowser.Model/MediaBrowser.Model.csproj b/MediaBrowser.Model/MediaBrowser.Model.csproj index 14313d421..f00bcdcae 100644 --- a/MediaBrowser.Model/MediaBrowser.Model.csproj +++ b/MediaBrowser.Model/MediaBrowser.Model.csproj @@ -57,7 +57,6 @@ <Compile Include="Entities\MediaUrl.cs" /> <Compile Include="Entities\MetadataFields.cs" /> <Compile Include="Entities\Video3DFormat.cs" /> - <Compile Include="Entities\VideoFormat.cs" /> <Compile Include="Net\WebSocketMessage.cs" /> <Compile Include="Net\WebSocketMessageType.cs" /> <Compile Include="Net\WebSocketState.cs" /> |
