1
mirror of https://github.com/mpv-player/mpv synced 2024-11-14 22:48:35 +01:00
mpv/video/out/gl_lcms.h
wm4 75e63ebb24 gl_lcms: mp_msg conversion
Have to deal with some dumb stuff in LittleCMS2's API: its error handler
is global.
2013-09-12 01:34:42 +02:00

18 lines
298 B
C

#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 mp_log;
struct lut3d *mp_load_icc(struct mp_icc_opts *opts, struct mp_log *log);
#endif