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.
25 lines
406 B
25 lines
406 B
5 months ago
|
#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
|
||
|
}
|