From e78d23e9490e2c099c890dc2a98dbea9744d1e9a Mon Sep 17 00:00:00 2001 From: rofafor Date: Thu, 8 Jan 2009 11:58:33 +0000 Subject: Added sharpness and noise reduction setup options for VDPAU. --- device.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'device.c') diff --git a/device.c b/device.c index 2a5534dd..bca0168e 100644 --- a/device.c +++ b/device.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: device.c,v 1.63 2008-11-20 11:46:30 rofafor Exp $ + * $Id: device.c,v 1.64 2009-01-08 11:58:33 rofafor Exp $ * */ @@ -436,15 +436,15 @@ void cXinelibDevice::ConfigurePostprocessing(const char *name, bool on, m_server->ConfigurePostprocessing(name, on, args); } -void cXinelibDevice::ConfigureVideo(int hue, int saturation, int brightness, int contrast, - int overscan, int vo_aspect_ratio) +void cXinelibDevice::ConfigureVideo(int hue, int saturation, int brightness, int sharpness, + int noise_reduction, int contrast, int overscan, int vo_aspect_ratio) { TRACEF("cXinelibDevice::ConfigureVideo"); if(m_local) - m_local->ConfigureVideo(hue, saturation, brightness, contrast, overscan, vo_aspect_ratio); + m_local->ConfigureVideo(hue, saturation, brightness, sharpness, noise_reduction, contrast, overscan, vo_aspect_ratio); if(m_server) - m_server->ConfigureVideo(hue, saturation, brightness, contrast, overscan, vo_aspect_ratio); + m_server->ConfigureVideo(hue, saturation, brightness, sharpness, noise_reduction, contrast, overscan, vo_aspect_ratio); } void cXinelibDevice::ConfigureDecoder(int pes_buffers) -- cgit v1.2.3