Commit 68cedacf authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Jack: auto-connect by default

And do not flag as advanced the 2 useful options
parent 195b652d
...@@ -87,10 +87,10 @@ vlc_module_begin () ...@@ -87,10 +87,10 @@ vlc_module_begin ()
set_capability( "audio output", 100 ) set_capability( "audio output", 100 )
set_category( CAT_AUDIO ) set_category( CAT_AUDIO )
set_subcategory( SUBCAT_AUDIO_AOUT ) set_subcategory( SUBCAT_AUDIO_AOUT )
add_bool( AUTO_CONNECT_OPTION, false, AUTO_CONNECT_TEXT, add_bool( AUTO_CONNECT_OPTION, true, AUTO_CONNECT_TEXT,
AUTO_CONNECT_LONGTEXT, true ) AUTO_CONNECT_LONGTEXT, false )
add_string( CONNECT_REGEX_OPTION, NULL, CONNECT_REGEX_TEXT, add_string( CONNECT_REGEX_OPTION, "system", CONNECT_REGEX_TEXT,
CONNECT_REGEX_LONGTEXT, true ) CONNECT_REGEX_LONGTEXT, false )
set_callbacks( Open, Close ) set_callbacks( Open, Close )
vlc_module_end () vlc_module_end ()
......
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