diff options
author | phintuka <phintuka> | 2006-08-25 04:03:11 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2006-08-25 04:03:11 +0000 |
commit | 2b9135f68c502782fb64cfc481d619cfae39b36f (patch) | |
tree | dc8b7eab6a5c6bcdfc06801ca25c50fac7a99587 /device.c | |
parent | 8547279516712f160b29ea57e6f2d5af23b2f9e9 (diff) | |
download | xineliboutput-2b9135f68c502782fb64cfc481d619cfae39b36f.tar.gz xineliboutput-2b9135f68c502782fb64cfc481d619cfae39b36f.tar.bz2 |
Added overscan option
Diffstat (limited to 'device.c')
-rw-r--r-- | device.c | 9 |
1 files changed, 5 insertions, 4 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.15 2006-08-24 23:31:16 phintuka Exp $ + * $Id: device.c,v 1.16 2006-08-25 04:03:11 phintuka Exp $ * */ @@ -379,14 +379,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) +void cXinelibDevice::ConfigureVideo(int hue, int saturation, int brightness, int contrast, + int overscan) { TRACEF("cXinelibDevice::ConfigureVideo"); if(m_local) - m_local->ConfigureVideo(hue, saturation, brightness, contrast); + m_local->ConfigureVideo(hue, saturation, brightness, contrast, overscan); if(m_server) - m_server->ConfigureVideo(hue, saturation, brightness, contrast); + m_server->ConfigureVideo(hue, saturation, brightness, contrast, overscan); } void cXinelibDevice::ConfigureDecoder(int pes_buffers, int priority) |