[vlc-commits] Jack: auto-connect by default

Jean-Baptiste Kempf git at videolan.org
Thu Mar 17 00:21:20 CET 2011


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu Mar 17 00:20:19 2011 +0100| [68cedacfe88ef02061835fc1c3ac73b8851e86fe] | committer: Jean-Baptiste Kempf

Jack: auto-connect by default

And do not flag as advanced the 2 useful options

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=68cedacfe88ef02061835fc1c3ac73b8851e86fe
---

 modules/audio_output/jack.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/audio_output/jack.c b/modules/audio_output/jack.c
index cfe3736..aeebfb2 100644
--- a/modules/audio_output/jack.c
+++ b/modules/audio_output/jack.c
@@ -87,10 +87,10 @@ vlc_module_begin ()
     set_capability( "audio output", 100 )
     set_category( CAT_AUDIO )
     set_subcategory( SUBCAT_AUDIO_AOUT )
-    add_bool( AUTO_CONNECT_OPTION, false, AUTO_CONNECT_TEXT,
-              AUTO_CONNECT_LONGTEXT, true )
-    add_string( CONNECT_REGEX_OPTION, NULL, CONNECT_REGEX_TEXT,
-                CONNECT_REGEX_LONGTEXT, true )
+    add_bool( AUTO_CONNECT_OPTION, true, AUTO_CONNECT_TEXT,
+              AUTO_CONNECT_LONGTEXT, false )
+    add_string( CONNECT_REGEX_OPTION, "system", CONNECT_REGEX_TEXT,
+                CONNECT_REGEX_LONGTEXT, false )
     set_callbacks( Open, Close )
 vlc_module_end ()
 



More information about the vlc-commits mailing list