1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-19 22:36:55 +00:00

gl_lcms: fix build when lcms2 is not available

Was broken in b0ee9334e.
This commit is contained in:
Stefano Pigozzi 2014-03-31 22:31:24 +02:00
parent 12e2290703
commit c2c9cb2bbf

View File

@ -253,6 +253,11 @@ const struct m_sub_options mp_icc_conf = {
.defaults = &(const struct mp_icc_opts) {0},
};
bool mp_icc_set_profile(struct mp_icc_opts *opts, char *profile)
{
return false;
}
struct lut3d *mp_load_icc(struct mp_icc_opts *opts, struct mp_log *log,
struct mpv_global *global)
{