diff options
-rw-r--r-- | config.c | 4 | ||||
-rw-r--r-- | config.h | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: config.c,v 1.84 2009-08-07 12:18:06 phintuka Exp $ + * $Id: config.c,v 1.85 2009-08-19 13:12:10 phintuka Exp $ * */ @@ -578,6 +578,8 @@ config_t::config_t() { osd_size = OSD_SIZE_auto; osd_width = 720; osd_height = 576; + osd_width_auto = 0; + osd_height_auto = 0; osd_mixer = OSD_MIXER_FULL; osd_scaling = OSD_SCALING_NEAREST; hud_osd = 0; @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: config.h,v 1.63 2009-08-07 12:18:07 phintuka Exp $ + * $Id: config.h,v 1.64 2009-08-19 13:12:10 phintuka Exp $ * */ @@ -295,6 +295,8 @@ class config_t { int osd_size; int osd_width; int osd_height; + int osd_width_auto; + int osd_height_auto; int osd_mixer; // show multiple OSD layers int osd_scaling; // OSD scaling mode: off, nearest, bilinear int hud_osd; // head up display OSD |