diff options
Diffstat (limited to 'frontend.c')
-rw-r--r-- | frontend.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: frontend.c,v 1.44 2008-02-05 00:30:48 phintuka Exp $ + * $Id: frontend.c,v 1.45 2008-02-19 00:43:04 phelin Exp $ * */ @@ -804,13 +804,13 @@ int cXinelibThread::ConfigurePostprocessing(const char *name, bool on, const cha int cXinelibThread::ConfigureVideo(int hue, int saturation, int brightness, int contrast, - int overscan) + int overscan, int vo_aspect_ratio) { char cmd[128]; Xine_Control("OVERSCAN", overscan); snprintf(cmd, sizeof(cmd), - "VIDEO_PROPERTIES %d %d %d %d", - hue, saturation, brightness, contrast); + "VIDEO_PROPERTIES %d %d %d %d %d", + hue, saturation, brightness, contrast, vo_aspect_ratio); return Xine_Control(cmd); } |