diff options
author | wm4 <wm4@nowhere> | 2014-03-29 00:25:08 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2014-03-29 00:25:08 +0100 |
commit | bd0618f01f1331c1ba0a3b2bb65975b5a21fe2e2 (patch) | |
tree | aa7ecd5d7a7662130c8a25d3dd569ac6c50624c2 /video/out/gl_video.h | |
parent | fdeda359f7b060ec0a926eccb86c01b736a1ee16 (diff) | |
download | mpv-bd0618f01f1331c1ba0a3b2bb65975b5a21fe2e2.tar.bz2 mpv-bd0618f01f1331c1ba0a3b2bb65975b5a21fe2e2.tar.xz |
video/out: remove legacy colorspace stuff
Reduce most dependencies on struct mp_csp_details, which was a bad first
attempt at dealing with colorspace stuff. Instead, consistently use
mp_image_params.
Code which retrieves colorspace matrices from csputils.c still uses this
type, though.
Diffstat (limited to 'video/out/gl_video.h')
-rw-r--r-- | video/out/gl_video.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/gl_video.h b/video/out/gl_video.h index 989ac3b008..2b0178db55 100644 --- a/video/out/gl_video.h +++ b/video/out/gl_video.h @@ -69,7 +69,7 @@ struct mp_image *gl_video_download_image(struct gl_video *p); void gl_video_resize(struct gl_video *p, struct mp_rect *window, struct mp_rect *src, struct mp_rect *dst, struct mp_osd_res *osd); -bool gl_video_get_csp_override(struct gl_video *p, struct mp_csp_details *csp); +void gl_video_get_colorspace(struct gl_video *p, struct mp_image_params *params); bool gl_video_set_equalizer(struct gl_video *p, const char *name, int val); bool gl_video_get_equalizer(struct gl_video *p, const char *name, int *val); |