mirror of https://github.com/ErsatzTV/ErsatzTV.git
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.
11 lines
323 B
11 lines
323 B
namespace ErsatzTV.FFmpeg; |
|
|
|
public static class TonemapAlgorithm |
|
{ |
|
public const string Linear = "linear"; |
|
public const string Clip = "clip"; |
|
public const string Gamma = "gamma"; |
|
public const string Reinhard = "reinhard"; |
|
public const string Mobius = "mobius"; |
|
public const string Hable = "hable"; |
|
}
|
|
|