diff options
author | rofafor <rofafor> | 2009-01-08 11:58:33 +0000 |
---|---|---|
committer | rofafor <rofafor> | 2009-01-08 11:58:33 +0000 |
commit | e78d23e9490e2c099c890dc2a98dbea9744d1e9a (patch) | |
tree | 79c9af2339d979dc0cf8fbf5a26dde1c359793a8 /device.c | |
parent | 90955861ff984d980c2c6ab48a1051a38a959c5a (diff) | |
download | xineliboutput-e78d23e9490e2c099c890dc2a98dbea9744d1e9a.tar.gz xineliboutput-e78d23e9490e2c099c890dc2a98dbea9744d1e9a.tar.bz2 |
Added sharpness and noise reduction setup options for VDPAU.
Diffstat (limited to 'device.c')
-rw-r--r-- | device.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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) |