jellyfin/MediaBrowser.Model/Entities/VideoFormat.cs

22 lines
408 B
C#
Raw Normal View History

2013-02-21 02:33:05 +01:00
namespace MediaBrowser.Model.Entities
{
2013-04-21 03:17:59 +02:00
/// <summary>
/// Enum VideoFormat
/// </summary>
2013-02-21 02:33:05 +01:00
public enum VideoFormat
{
2013-04-21 03:17:59 +02:00
/// <summary>
/// The standard
/// </summary>
2013-02-21 02:33:05 +01:00
Standard,
2013-04-21 03:17:59 +02:00
/// <summary>
/// The digital3 D
/// </summary>
2013-02-21 02:33:05 +01:00
Digital3D,
2013-04-21 03:17:59 +02:00
/// <summary>
/// The SBS3 D
/// </summary>
2013-02-21 02:33:05 +01:00
Sbs3D
}
}