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
90020f66
Commit
90020f66
authored
Dec 30, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
JACK output: use var_Inherit
parent
05320812
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/audio_output/jack.c
modules/audio_output/jack.c
+2
-2
No files found.
modules/audio_output/jack.c
View file @
90020f66
...
...
@@ -186,10 +186,10 @@ static int Open( vlc_object_t *p_this )
}
/* Auto connect ports if we were asked to */
if
(
config_GetInt
(
p_aout
,
AUTO_CONNECT_OPTION
)
)
if
(
var_InheritInteger
(
p_aout
,
AUTO_CONNECT_OPTION
)
)
{
unsigned
int
i_in_ports
;
char
*
psz_regex
=
config_GetPsz
(
p_aout
,
CONNECT_REGEX_OPTION
);
char
*
psz_regex
=
var_InheritString
(
p_aout
,
CONNECT_REGEX_OPTION
);
const
char
**
pp_in_ports
=
jack_get_ports
(
p_sys
->
p_jack_client
,
psz_regex
,
NULL
,
JackPortIsInput
);
...
...
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