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
520bb970
Commit
520bb970
authored
Jan 26, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't change enum orders.
parent
dc85d75d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
include/vlc_keys.h
include/vlc_keys.h
+2
-1
src/libvlc-module.c
src/libvlc-module.c
+1
-1
No files found.
include/vlc_keys.h
View file @
520bb970
...
...
@@ -309,7 +309,6 @@ typedef enum vlc_key {
ACTIONID_DISC_MENU
,
ACTIONID_ASPECT_RATIO
,
ACTIONID_CROP
,
ACTIONID_TOGGLE_SCALING
,
ACTIONID_DEINTERLACE
,
ACTIONID_ZOOM
,
ACTIONID_UNZOOM
,
...
...
@@ -340,5 +339,7 @@ typedef enum vlc_key {
ACTIONID_ZOOM_DOUBLE
,
/* Cycle Through Audio Devices */
ACTIONID_AUDIODEVICE_CYCLE
/* Scaling in fullscreen */
ACTIONID_TOGGLE_SCALING
,
}
vlc_key_t
;
#endif
src/libvlc-module.c
View file @
520bb970
...
...
@@ -2681,7 +2681,6 @@ const struct hotkey libvlc_hotkeys[] =
{
"key-subtitle-track"
,
ACTIONID_SUBTITLE_TRACK
,
0
,
},
{
"key-aspect-ratio"
,
ACTIONID_ASPECT_RATIO
,
0
,
},
{
"key-crop"
,
ACTIONID_CROP
,
0
,
},
{
"key-toggle-scaling"
,
ACTIONID_TOGGLE_SCALING
,
0
,
},
{
"key-deinterlace"
,
ACTIONID_DEINTERLACE
,
0
,
},
{
"key-intf-show"
,
ACTIONID_INTF_SHOW
,
0
,
},
{
"key-intf-hide"
,
ACTIONID_INTF_HIDE
,
0
,
},
...
...
@@ -2745,6 +2744,7 @@ const struct hotkey libvlc_hotkeys[] =
{
"key-menu-down"
,
ACTIONID_MENU_DOWN
,
0
,
},
{
"key-menu-select"
,
ACTIONID_MENU_SELECT
,
0
,
},
{
"key-audiodevice-cycle"
,
ACTIONID_AUDIODEVICE_CYCLE
,
0
,
},
{
"key-toggle-scaling"
,
ACTIONID_TOGGLE_SCALING
,
0
,
},
{
NULL
,
0
,
0
,
}
};
...
...
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