mirror of
https://github.com/mpv-player/mpv
synced 2024-11-14 22:48:35 +01:00
75e63ebb24
Have to deal with some dumb stuff in LittleCMS2's API: its error handler is global.
18 lines
298 B
C
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
|