aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dto/StreamOptions.cs
diff options
context:
space:
mode:
authortikuf <admin@nyalindee.com>2014-03-25 16:09:30 +1100
committertikuf <admin@nyalindee.com>2014-03-25 16:09:30 +1100
commit520b77a098a5f3755c098636821a7ff3742a055f (patch)
treeb347c31d1333520350422c3e3a08cea292fc8093 /MediaBrowser.Model/Dto/StreamOptions.cs
parent72bd678b9736ed0cdd8afea90e7e0c91c5b9b4c9 (diff)
parenta94a98dc6c1381c177a407139769e0cad566346b (diff)
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
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
- }
}