Files
jellyfin-jellyfin-1/MediaBrowser.Model/Entities/VideoFormat.cs

22 lines
408 B
C#
Raw Normal View History

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