Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
5480fa45
Commit
5480fa45
authored
Dec 28, 2004
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Do not search a visualizer in strict mode
* Fix --help with module lists
parent
efa014c4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
src/audio_output/input.c
src/audio_output/input.c
+2
-2
src/libvlc.c
src/libvlc.c
+3
-0
No files found.
src/audio_output/input.c
View file @
5480fa45
...
...
@@ -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_
TRU
E
);
module_Need
(
p_filter
,
"audio filter"
,
psz_parser
,
VLC_
FALS
E
);
if
(
p_filter
->
p_module
==
NULL
)
{
p_filter
->
p_module
=
module_Need
(
p_filter
,
"visualization"
,
psz_parser
,
VLC_
TRU
E
);
VLC_
FALS
E
);
if
(
p_filter
->
p_module
==
NULL
)
{
msg_Err
(
p_aout
,
"cannot add user filter %s (skipped)"
,
...
...
src/libvlc.c
View file @
5480fa45
...
...
@@ -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
=
">"
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment