summaryrefslogtreecommitdiffstats
path: root/video/out/opengl/video.h
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/opengl/video.h')
-rw-r--r--video/out/opengl/video.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/video/out/opengl/video.h b/video/out/opengl/video.h
index f3608626e4..b19f6e099d 100644
--- a/video/out/opengl/video.h
+++ b/video/out/opengl/video.h
@@ -99,6 +99,9 @@ enum tone_mapping {
TONE_MAPPING_LINEAR,
};
+// How many frames to average over for HDR peak detection
+#define PEAK_DETECT_FRAMES 100
+
struct gl_video_opts {
int dumb_mode;
struct scaler_config scaler[4];
@@ -109,6 +112,7 @@ struct gl_video_opts {
int target_trc;
int target_brightness;
int hdr_tone_mapping;
+ int compute_hdr_peak;
float tone_mapping_param;
float tone_mapping_desat;
int linear_scaling;