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
5036683e
Commit
5036683e
authored
May 23, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
input: remove unused "navigation" variable
parent
32466e66
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
6 deletions
+0
-6
src/input/var.c
src/input/var.c
+0
-6
No files found.
src/input/var.c
View file @
5036683e
...
@@ -180,11 +180,6 @@ void input_ControlVarInit ( input_thread_t *p_input )
...
@@ -180,11 +180,6 @@ void input_ControlVarInit ( input_thread_t *p_input )
text
.
psz_string
=
_
(
"Chapter"
);
text
.
psz_string
=
_
(
"Chapter"
);
var_Change
(
p_input
,
"chapter"
,
VLC_VAR_SETTEXT
,
&
text
,
NULL
);
var_Change
(
p_input
,
"chapter"
,
VLC_VAR_SETTEXT
,
&
text
,
NULL
);
/* Navigation The callback is added after */
var_Create
(
p_input
,
"navigation"
,
VLC_VAR_VARIABLE
|
VLC_VAR_HASCHOICE
);
text
.
psz_string
=
_
(
"Navigation"
);
var_Change
(
p_input
,
"navigation"
,
VLC_VAR_SETTEXT
,
&
text
,
NULL
);
/* Delay */
/* Delay */
var_Create
(
p_input
,
"audio-delay"
,
VLC_VAR_INTEGER
);
var_Create
(
p_input
,
"audio-delay"
,
VLC_VAR_INTEGER
);
var_SetInteger
(
p_input
,
"audio-delay"
,
var_SetInteger
(
p_input
,
"audio-delay"
,
...
@@ -318,7 +313,6 @@ void input_ControlVarNavigation( input_thread_t *p_input )
...
@@ -318,7 +313,6 @@ void input_ControlVarNavigation( input_thread_t *p_input )
p_input
->
p
->
title
[
i
]
->
psz_name
,
psz_length
)
==
-
1
)
p_input
->
p
->
title
[
i
]
->
psz_name
,
psz_length
)
==
-
1
)
continue
;
continue
;
}
}
var_Change
(
p_input
,
"navigation"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
/* Add title choice */
/* Add title choice */
val2
.
i_int
=
i
;
val2
.
i_int
=
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