Commit 9f13c667 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Visualisation: use 16:10 vout by default

Instead of 5:4
parent bc144569
......@@ -61,7 +61,7 @@ vlc_module_begin ()
set_capability( "visualization2", 0 )
add_integer( "goom-width", 800,
WIDTH_TEXT, RES_LONGTEXT, false )
add_integer( "goom-height", 640,
add_integer( "goom-height", 500,
HEIGHT_TEXT, RES_LONGTEXT, false )
add_integer_with_range( "goom-speed", 6, 1, 10,
SPEED_TEXT, SPEED_LONGTEXT, false )
......
......@@ -105,7 +105,7 @@ vlc_module_begin ()
#endif
add_integer( "projectm-width", 800, WIDTH_TEXT, WIDTH_LONGTEXT,
false )
add_integer( "projectm-height", 640, HEIGHT_TEXT, HEIGHT_LONGTEXT,
add_integer( "projectm-height", 500, HEIGHT_TEXT, HEIGHT_LONGTEXT,
false )
add_integer( "projectm-meshx", 32, MESHX_TEXT, MESHX_LONGTEXT,
false )
......
......@@ -87,5 +87,5 @@ int spectrometer_Run
(visual_effect_t * , vlc_object_t *, const block_t *, picture_t *);
/* Default vout size */
#define VOUT_WIDTH 800
#define VOUT_HEIGHT 640
#define VOUT_WIDTH 800
#define VOUT_HEIGHT 500
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment