summaryrefslogtreecommitdiffstats
path: root/video/out/gpu/video.h
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/gpu/video.h')
-rw-r--r--video/out/gpu/video.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/video/out/gpu/video.h b/video/out/gpu/video.h
index adeadaba65..0bb180e514 100644
--- a/video/out/gpu/video.h
+++ b/video/out/gpu/video.h
@@ -100,6 +100,14 @@ enum tone_mapping {
TONE_MAPPING_BT_2446A,
};
+enum tone_mapping_mode {
+ TONE_MAP_MODE_AUTO,
+ TONE_MAP_MODE_RGB,
+ TONE_MAP_MODE_MAX,
+ TONE_MAP_MODE_HYBRID,
+ TONE_MAP_MODE_LUMA,
+};
+
enum gamut_mode {
GAMUT_AUTO,
GAMUT_CLIP,
@@ -114,12 +122,11 @@ struct gl_tone_map_opts {
float max_boost;
int inverse;
float crosstalk;
+ int mode;
int compute_peak;
float decay_rate;
float scene_threshold_low;
float scene_threshold_high;
- float desat;
- float desat_exp;
int gamut_mode;
};