You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Model/Entities/TonemappingRange.cs

25 lines
406 B

#pragma warning disable SA1300 // Lowercase required for backwards compat.
namespace MediaBrowser.Model.Entities;
/// <summary>
/// Enum containing tonemapping ranges.
/// </summary>
public enum TonemappingRange
{
/// <summary>
/// Auto.
/// </summary>
auto = 0,
/// <summary>
/// TV.
/// </summary>
tv = 1,
/// <summary>
/// PC.
/// </summary>
pc = 2
}