mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-31 21:08:27 +01:00
Use enums for encoding options (#12561)
This commit is contained in:
24
MediaBrowser.Model/Entities/TonemappingRange.cs
Normal file
24
MediaBrowser.Model/Entities/TonemappingRange.cs
Normal file
@@ -0,0 +1,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
|
||||
}
|
||||
Reference in New Issue
Block a user