2013-03-01 20:19:20 +00:00
|
|
|
#ifndef MP_GL_LCMS_H
|
|
|
|
#define MP_GL_LCMS_H
|
|
|
|
|
2014-02-24 23:04:30 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2013-03-01 20:19:20 +00:00
|
|
|
extern const struct m_sub_options mp_icc_conf;
|
|
|
|
|
|
|
|
struct mp_icc_opts {
|
|
|
|
char *profile;
|
2014-02-24 23:04:30 +00:00
|
|
|
int profile_auto;
|
2013-03-01 20:19:20 +00:00
|
|
|
char *cache;
|
|
|
|
char *size_str;
|
|
|
|
int intent;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct lut3d;
|
2013-09-11 23:28:14 +00:00
|
|
|
struct mp_log;
|
2013-12-21 16:51:20 +00:00
|
|
|
struct mpv_global;
|
2014-02-24 23:04:30 +00:00
|
|
|
bool mp_icc_set_profile(struct mp_icc_opts *opts, char *profile);
|
2013-12-21 16:51:20 +00:00
|
|
|
struct lut3d *mp_load_icc(struct mp_icc_opts *opts, struct mp_log *log,
|
|
|
|
struct mpv_global *global);
|
2013-03-01 20:19:20 +00:00
|
|
|
|
|
|
|
#endif
|