Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
0cbf54fb
Commit
0cbf54fb
authored
Jul 08, 2004
by
Sigmund Augdal Helberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hotkeys.c: Don't show "Disabled" when cycling audio tracks. Fixed =/== issue
with the subtitles hotkey (thank you gcc)
parent
43619b8a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
modules/control/hotkeys.c
modules/control/hotkeys.c
+7
-3
No files found.
modules/control/hotkeys.c
View file @
0cbf54fb
...
...
@@ -415,6 +415,10 @@ static void Run( intf_thread_t *p_intf )
var_Change
(
p_input
,
"audio-es"
,
VLC_VAR_GETCHOICES
,
&
list
,
&
list2
);
i_count
=
list
.
p_list
->
i_count
;
if
(
i_count
<=
1
)
{
continue
;
}
for
(
i
=
0
;
i
<
i_count
;
i
++
)
{
if
(
val
.
i_int
==
list
.
p_list
->
p_values
[
i
].
i_int
)
...
...
@@ -434,8 +438,8 @@ static void Run( intf_thread_t *p_intf )
else
if
(
i
==
i_count
-
1
)
{
var_Set
(
p_input
,
"audio-es"
,
list
.
p_list
->
p_values
[
0
]
);
i
=
0
;
list
.
p_list
->
p_values
[
1
]
);
i
=
1
;
}
else
{
...
...
@@ -447,7 +451,7 @@ static void Run( intf_thread_t *p_intf )
_
(
"Audio track: %s"
),
list2
.
p_list
->
p_values
[
i
].
psz_string
);
}
else
if
(
i_action
=
ACTIONID_SUBTITLE_TRACK
)
else
if
(
i_action
=
=
ACTIONID_SUBTITLE_TRACK
)
{
vlc_value_t
val
,
list
,
list2
;
int
i_count
,
i
;
...
...
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