diff options
author | phelin <phelin> | 2008-02-19 00:43:04 +0000 |
---|---|---|
committer | phelin <phelin> | 2008-02-19 00:43:04 +0000 |
commit | 66f7eb3aa9eb07360fbd8794223b046dee420855 (patch) | |
tree | e32b83e67220f10cce32ce09671179f2847944a3 /device.c | |
parent | 351111a062662ba136cf29eba36edbbe4336b9c1 (diff) | |
download | xineliboutput-66f7eb3aa9eb07360fbd8794223b046dee420855.tar.gz xineliboutput-66f7eb3aa9eb07360fbd8794223b046dee420855.tar.bz2 |
Added the possibility to select the aspect ratio of the video.
Diffstat (limited to 'device.c')
-rw-r--r-- | device.c | 8 |
1 files changed, 4 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.50 2008-02-05 00:47:05 phintuka Exp $ + * $Id: device.c,v 1.51 2008-02-19 00:43:04 phelin Exp $ * */ @@ -456,14 +456,14 @@ void cXinelibDevice::ConfigurePostprocessing(const char *name, bool on, } void cXinelibDevice::ConfigureVideo(int hue, int saturation, int brightness, int contrast, - int overscan) + int overscan, int vo_aspect_ratio) { TRACEF("cXinelibDevice::ConfigureVideo"); if(m_local) - m_local->ConfigureVideo(hue, saturation, brightness, contrast, overscan); + m_local->ConfigureVideo(hue, saturation, brightness, contrast, overscan, vo_aspect_ratio); if(m_server) - m_server->ConfigureVideo(hue, saturation, brightness, contrast, overscan); + m_server->ConfigureVideo(hue, saturation, brightness, contrast, overscan, vo_aspect_ratio); } void cXinelibDevice::ConfigureDecoder(int pes_buffers) |