aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dto/StreamOptions.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-03-23 16:07:02 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-03-23 16:07:02 -0400
commit7438aa6dfa5569e639d769c03ccd522d66b5bdeb (patch)
tree29373f23d801d3bf7feeb5c5a027d5ac2b64c114 /MediaBrowser.Model/Dto/StreamOptions.cs
parent87aee1625da956669bce724177821378f4f3158c (diff)
removed codec enums
Diffstat (limited to 'MediaBrowser.Model/Dto/StreamOptions.cs')
-rw-r--r--MediaBrowser.Model/Dto/StreamOptions.cs68
1 files changed, 2 insertions, 66 deletions
diff --git a/MediaBrowser.Model/Dto/StreamOptions.cs b/MediaBrowser.Model/Dto/StreamOptions.cs
index 17fd06cb6..c38707e53 100644
--- a/MediaBrowser.Model/Dto/StreamOptions.cs
+++ b/MediaBrowser.Model/Dto/StreamOptions.cs
@@ -10,7 +10,7 @@
/// Omit to copy
/// </summary>
/// <value>The video codec.</value>
- public VideoCodecs? VideoCodec { get; set; }
+ public string VideoCodec { get; set; }
/// <summary>
/// Gets or sets the video bit rate.
@@ -113,7 +113,7 @@
/// Omit to copy the original stream
/// </summary>
/// <value>The audio encoding format.</value>
- public AudioCodecs? AudioCodec { get; set; }
+ public string AudioCodec { get; set; }
/// <summary>
/// Gets or sets the item id.
@@ -158,68 +158,4 @@
/// <value>The device id.</value>
public string DeviceId { get; set; }
}
-
- /// <summary>
- /// These are the codecs the api is capable of encoding to
- /// </summary>
- public enum AudioCodecs
- {
- /// <summary>
- /// The aac
- /// </summary>
- Aac,
- /// <summary>
- /// The MP3
- /// </summary>
- Mp3,
- /// <summary>
- /// The vorbis
- /// </summary>
- Vorbis,
- /// <summary>
- /// The wma
- /// </summary>
- Wma,
- /// <summary>
- /// The copy
- /// </summary>
- Copy
- }
-
- /// <summary>
- /// Enum VideoCodecs
- /// </summary>
- public enum VideoCodecs
- {
- H263,
-
- /// <summary>
- /// The H264
- /// </summary>
- H264,
-
- /// <summary>
- /// The mpeg4
- /// </summary>
- Mpeg4,
-
- /// <summary>
- /// The theora
- /// </summary>
- Theora,
-
- /// <summary>
- /// The VPX
- /// </summary>
- Vpx,
-
- /// <summary>
- /// The WMV
- /// </summary>
- Wmv,
- /// <summary>
- /// The copy
- /// </summary>
- Copy
- }
}