aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/VideoFormat.cs
blob: ad04203e25283ec100da1492a1b14fe138e4c7a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace MediaBrowser.Model.Entities
{
    /// <summary>
    /// Enum VideoFormat
    /// </summary>
    public enum VideoFormat
    {
        /// <summary>
        /// The standard
        /// </summary>
        Standard,
        /// <summary>
        /// The digital3 D
        /// </summary>
        Digital3D,
        /// <summary>
        /// The SBS3 D
        /// </summary>
        Sbs3D
    }
}