changeset 1922:4f200abfccd7

set stereo.fixed default values to hdmi stereo standard
author Vladimir Nadvornik <nadvornik@suse.cz>
date Tue, 27 Sep 2011 22:06:09 +0200
parents 9a82e917c61d
children 751d39d7ac30
files src/options.c
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/options.c	Tue Sep 27 22:03:47 2011 +0200
+++ b/src/options.c	Tue Sep 27 22:06:09 2011 +0200
@@ -125,12 +125,12 @@
 	options->tree_descend_subdirs = FALSE;
 	options->update_on_time_change = TRUE;
 	
-	options->stereo.fixed_w = 640;
-	options->stereo.fixed_h = 200;
+	options->stereo.fixed_w = 1920;
+	options->stereo.fixed_h = 1080;
 	options->stereo.fixed_x1 = 0;
-	options->stereo.fixed_y1 = 20;
+	options->stereo.fixed_y1 = 0;
 	options->stereo.fixed_x2 = 0;
-	options->stereo.fixed_y2 = 260;
+	options->stereo.fixed_y2 = 1125;
 
 	return options;
 }