Commit 5480fa45 authored by Clément Stenac's avatar Clément Stenac

* Do not search a visualizer in strict mode

* Fix --help with module lists
parent efa014c4
......@@ -244,13 +244,13 @@ int aout_InputNew( aout_instance_t * p_aout, aout_input_t * p_input )
sizeof(audio_sample_format_t) );
p_filter->p_module =
module_Need( p_filter,"audio filter", psz_parser, VLC_TRUE );
module_Need( p_filter,"audio filter", psz_parser, VLC_FALSE );
if( p_filter->p_module== NULL )
{
p_filter->p_module =
module_Need( p_filter,"visualization", psz_parser,
VLC_TRUE );
VLC_FALSE );
if( p_filter->p_module == NULL )
{
msg_Err( p_aout, "cannot add user filter %s (skipped)",
......
......@@ -1947,6 +1947,9 @@ static void Usage( vlc_t *p_this, char const *psz_module_name )
case CONFIG_ITEM_FILE:
case CONFIG_ITEM_DIRECTORY:
case CONFIG_ITEM_MODULE: /* We could also have "=<" here */
case CONFIG_ITEM_MODULE_CAT:
case CONFIG_ITEM_MODULE_LIST:
case CONFIG_ITEM_MODULE_LIST_CAT:
if( !p_item->ppsz_list )
{
psz_bra = " <"; psz_type = _("string"); psz_ket = ">";
......
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