summaryrefslogtreecommitdiffstats
path: root/video/out/gl_lcms.h
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/gl_lcms.h')
-rw-r--r--video/out/gl_lcms.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/video/out/gl_lcms.h b/video/out/gl_lcms.h
index a579b78f43..f1ab069574 100644
--- a/video/out/gl_lcms.h
+++ b/video/out/gl_lcms.h
@@ -1,10 +1,13 @@
#ifndef MP_GL_LCMS_H
#define MP_GL_LCMS_H
+#include <stdbool.h>
+
extern const struct m_sub_options mp_icc_conf;
struct mp_icc_opts {
char *profile;
+ int profile_auto;
char *cache;
char *size_str;
int intent;
@@ -13,6 +16,7 @@ struct mp_icc_opts {
struct lut3d;
struct mp_log;
struct mpv_global;
+bool mp_icc_set_profile(struct mp_icc_opts *opts, char *profile);
struct lut3d *mp_load_icc(struct mp_icc_opts *opts, struct mp_log *log,
struct mpv_global *global);