aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/MediaInfo/VideoCodec.cs
blob: 81755dac9f21a4dffd8d05e04f0ace04d1bf25fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace MediaBrowser.Model.MediaInfo
{
    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 MPEG1 = "mpeg1video";
        public const string MPEG2 = "mpeg2video";
        public const string MSMPEG4 = "msmpeg4";
        public const string VC1 = "vc1";
    }
}