aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/Video3DFormat.cs
blob: b7789e858c039aabd03fcfdcabd66a88c60bbd2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma warning disable CS1591
#pragma warning disable SA1600

namespace MediaBrowser.Model.Entities
{
    public enum Video3DFormat
    {
        HalfSideBySide,
        FullSideBySide,
        FullTopAndBottom,
        HalfTopAndBottom,
        MVC
    }
}