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
da0ee427
Commit
da0ee427
authored
Dec 05, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed ppsz_input_state in RC after input state changes.
parent
7b0d97e2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
11 deletions
+6
-11
include/vlc_input.h
include/vlc_input.h
+0
-3
modules/control/rc.c
modules/control/rc.c
+6
-8
No files found.
include/vlc_input.h
View file @
da0ee427
...
...
@@ -469,9 +469,6 @@ struct input_thread_t
* Input state
*
* This enum is used by the variable "state"
*
* NOTE: you need to update ppsz_input_state in the RC interface
* if you modify this list.
*/
typedef
enum
input_state_e
{
...
...
modules/control/rc.c
View file @
da0ee427
...
...
@@ -69,14 +69,12 @@
/* input_state_e from <vlc_input.h> */
static
const
char
*
ppsz_input_state
[]
=
{
N_
(
"Initializing"
),
N_
(
"Opening"
),
N_
(
"Buffer"
),
N_
(
"Play"
),
N_
(
"Pause"
),
N_
(
"Stop"
),
N_
(
"End"
),
N_
(
"Error"
),
[
INIT_S
]
=
N_
(
"Initializing"
),
[
OPENING_S
]
=
N_
(
"Opening"
),
[
PLAYING_S
]
=
N_
(
"Play"
),
[
PAUSE_S
]
=
N_
(
"Pause"
),
[
END_S
]
=
N_
(
"End"
),
[
ERROR_S
]
=
N_
(
"Error"
),
};
/*****************************************************************************
...
...
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