summaryrefslogtreecommitdiffstats
path: root/video/out/vo_opengl.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-09-12 01:28:14 +0200
committerwm4 <wm4@nowhere>2013-09-12 01:34:42 +0200
commit75e63ebb24f8866607996cb40ea56f6c3121b9c9 (patch)
tree51b7575e0112b0da3e00fe97ccd09dd2ceeeb25b /video/out/vo_opengl.c
parentbeb1aa59885bb84ace9a055963af0fc756e69547 (diff)
downloadmpv-75e63ebb24f8866607996cb40ea56f6c3121b9c9.tar.bz2
mpv-75e63ebb24f8866607996cb40ea56f6c3121b9c9.tar.xz
gl_lcms: mp_msg conversion
Have to deal with some dumb stuff in LittleCMS2's API: its error handler is global.
Diffstat (limited to 'video/out/vo_opengl.c')
-rw-r--r--video/out/vo_opengl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/vo_opengl.c b/video/out/vo_opengl.c
index 9253920049..7f4c05ac58 100644
--- a/video/out/vo_opengl.c
+++ b/video/out/vo_opengl.c
@@ -318,7 +318,7 @@ static int preinit(struct vo *vo)
gl_video_set_options(p->renderer, p->renderer_opts);
if (p->icc_opts->profile) {
- struct lut3d *lut3d = mp_load_icc(p->icc_opts);
+ struct lut3d *lut3d = mp_load_icc(p->icc_opts, vo->log);
if (!lut3d)
goto err_out;
gl_video_set_lut3d(p->renderer, lut3d);