aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/TonemappingRange.cs
blob: b1446b81c607361bf838706061609fab5f3feb68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#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
}