diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-05-12 14:04:25 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-05-12 14:04:25 -0400 |
| commit | 631442883085b10e36675fca5117fa3a49a608e0 (patch) | |
| tree | 1b542459c3d6a3e6833c2993b4c8a7e4992de61a /MediaBrowser.Model/MediaInfo/VideoCodec.cs | |
| parent | b9b568de13d81f9db1a8502d50940475c1d79c72 (diff) | |
Add remote control chapter menu
Diffstat (limited to 'MediaBrowser.Model/MediaInfo/VideoCodec.cs')
| -rw-r--r-- | MediaBrowser.Model/MediaInfo/VideoCodec.cs | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/MediaBrowser.Model/MediaInfo/VideoCodec.cs b/MediaBrowser.Model/MediaInfo/VideoCodec.cs index 7405eb13e9..81755dac9f 100644 --- a/MediaBrowser.Model/MediaInfo/VideoCodec.cs +++ b/MediaBrowser.Model/MediaInfo/VideoCodec.cs @@ -2,11 +2,13 @@ { public class VideoCodec { - public const string H263 = "H263"; - public const string H264 = "H264"; - public const string H265 = "H265"; - public const string MPEG4 = "MPEG4"; - public const string MSMPEG4 = "MSMPEG4"; - public const string VC1 = "VC1"; + public const string H263 = "h263"; + public const string H264 = "h264"; + public const string H265 = "h265"; + public const string MPEG4 = "mpeg4"; + public const string MPEG1 = "mpeg1video"; + public const string MPEG2 = "mpeg2video"; + public const string MSMPEG4 = "msmpeg4"; + public const string VC1 = "vc1"; } }
\ No newline at end of file |
