From ee63c9c210683df9cbf17f7bbc5f4de8725260f3 Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 29 Sep 2015 21:12:26 +0200 Subject: video: replace vf_format outputlevels option with global option The vf_format suboption is replaced with --video-output-levels (a global option and property). In particular, the parameter is removed from mp_image_params. The mechanism is moved to the "video equalizer", which also handles common video output customization like brightness and contrast controls. The new code is slightly cleaner, and the top-level option is slightly more user-friendly than as vf_format sub-option. --- video/out/vo_vdpau.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'video/out/vo_vdpau.c') diff --git a/video/out/vo_vdpau.c b/video/out/vo_vdpau.c index 20457b602e..5eaa23cc77 100644 --- a/video/out/vo_vdpau.c +++ b/video/out/vo_vdpau.c @@ -948,10 +948,6 @@ static struct mp_image *read_output_surface(struct vo *vo, if (!image) return NULL; - image->params.colorspace = MP_CSP_RGB; - // hardcoded with conv. matrix - image->params.colorlevels = vo->params->outputlevels; - void *dst_planes[] = { image->planes[0] }; uint32_t dst_pitches[] = { image->stride[0] }; vdp_st = vdp->output_surface_get_bits_native(surface, NULL, dst_planes, -- cgit v1.2.3