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.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/video/out/gl_lcms.h b/video/out/gl_lcms.h
new file mode 100644
index 0000000000..1debef485b
--- /dev/null
+++ b/video/out/gl_lcms.h
@@ -0,0 +1,16 @@
+#ifndef MP_GL_LCMS_H
+#define MP_GL_LCMS_H
+
+extern const struct m_sub_options mp_icc_conf;
+
+struct mp_icc_opts {
+ char *profile;
+ char *cache;
+ char *size_str;
+ int intent;
+};
+
+struct lut3d;
+struct lut3d *mp_load_icc(struct mp_icc_opts *opts);
+
+#endif