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
907eaa51
Commit
907eaa51
authored
Nov 26, 2015
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Comment navigation queries
parent
5aad8ebb
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
8 deletions
+20
-8
include/vlc_demux.h
include/vlc_demux.h
+13
-7
include/vlc_input.h
include/vlc_input.h
+7
-1
No files found.
include/vlc_demux.h
View file @
907eaa51
...
@@ -262,13 +262,19 @@ enum demux_query_e
...
@@ -262,13 +262,19 @@ enum demux_query_e
* arg1= bool * */
* arg1= bool * */
DEMUX_IS_PLAYLIST
,
DEMUX_IS_PLAYLIST
,
/* Navigation */
/* Menu (VCD/DVD/BD) Navigation */
DEMUX_NAV_ACTIVATE
,
/* res=can fail */
/** Activate the navigation item selected. Can fail */
DEMUX_NAV_UP
,
/* res=can fail */
DEMUX_NAV_ACTIVATE
,
DEMUX_NAV_DOWN
,
/* res=can fail */
/** Use the up arrow to select a navigation item above. Can fail */
DEMUX_NAV_LEFT
,
/* res=can fail */
DEMUX_NAV_UP
,
DEMUX_NAV_RIGHT
,
/* res=can fail */
/** Use the down arrow to select a navigation item under. Can fail */
DEMUX_NAV_POPUP
,
/* res=can fail */
DEMUX_NAV_DOWN
,
/** Use the left arrow to select a navigation item on the left. Can fail */
DEMUX_NAV_LEFT
,
/** Use the right arrow to select a navigation item on the right. Can fail */
DEMUX_NAV_RIGHT
,
/** Activate the popup Menu (for BD). Can fail */
DEMUX_NAV_POPUP
,
};
};
/*************************************************************************
/*************************************************************************
...
...
include/vlc_input.h
View file @
907eaa51
...
@@ -425,12 +425,18 @@ enum input_query_e
...
@@ -425,12 +425,18 @@ enum input_query_e
INPUT_GET_SPU_DELAY
,
/* arg1 = int* res=can fail */
INPUT_GET_SPU_DELAY
,
/* arg1 = int* res=can fail */
INPUT_SET_SPU_DELAY
,
/* arg1 = int res=can fail */
INPUT_SET_SPU_DELAY
,
/* arg1 = int res=can fail */
/* Menu navigation */
/* Menu (VCD/DVD/BD) Navigation */
/** Activate the navigation item selected. res=can fail */
INPUT_NAV_ACTIVATE
,
INPUT_NAV_ACTIVATE
,
/** Use the up arrow to select a navigation item above. res=can fail */
INPUT_NAV_UP
,
INPUT_NAV_UP
,
/** Use the down arrow to select a navigation item under. res=can fail */
INPUT_NAV_DOWN
,
INPUT_NAV_DOWN
,
/** Use the left arrow to select a navigation item on the left. res=can fail */
INPUT_NAV_LEFT
,
INPUT_NAV_LEFT
,
/** Use the right arrow to select a navigation item on the right. res=can fail */
INPUT_NAV_RIGHT
,
INPUT_NAV_RIGHT
,
/** Activate the popup Menu (for BD). res=can fail */
INPUT_NAV_POPUP
,
INPUT_NAV_POPUP
,
/* Meta datas */
/* Meta datas */
...
...
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