12 lines
172 B
C#
12 lines
172 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public enum FFmpegProfileTonemapAlgorithm
|
|
{
|
|
Linear = 0,
|
|
Clip = 1,
|
|
Gamma = 2,
|
|
Reinhard = 3,
|
|
Mobius = 4,
|
|
Hable = 5
|
|
}
|