[vlc-commits] Comment navigation queries
Jean-Baptiste Kempf
git at videolan.org
Thu Nov 26 16:03:49 CET 2015
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu Nov 26 16:03:25 2015 +0100| [907eaa518e5b4d8773c736ee5d2a2cee1f25864b] | committer: Jean-Baptiste Kempf
Comment navigation queries
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=907eaa518e5b4d8773c736ee5d2a2cee1f25864b
---
include/vlc_demux.h | 20 +++++++++++++-------
include/vlc_input.h | 8 +++++++-
2 files changed, 20 insertions(+), 8 deletions(-)
diff --git a/include/vlc_demux.h b/include/vlc_demux.h
index bf88c82..cc0d34a 100644
--- a/include/vlc_demux.h
+++ b/include/vlc_demux.h
@@ -262,13 +262,19 @@ enum demux_query_e
* arg1= bool * */
DEMUX_IS_PLAYLIST,
- /* Navigation */
- DEMUX_NAV_ACTIVATE, /* res=can fail */
- DEMUX_NAV_UP, /* res=can fail */
- DEMUX_NAV_DOWN, /* res=can fail */
- DEMUX_NAV_LEFT, /* res=can fail */
- DEMUX_NAV_RIGHT, /* res=can fail */
- DEMUX_NAV_POPUP, /* res=can fail */
+ /* Menu (VCD/DVD/BD) Navigation */
+ /** Activate the navigation item selected. Can fail */
+ DEMUX_NAV_ACTIVATE,
+ /** Use the up arrow to select a navigation item above. Can fail */
+ DEMUX_NAV_UP,
+ /** Use the down arrow to select a navigation item under. 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,
};
/*************************************************************************
diff --git a/include/vlc_input.h b/include/vlc_input.h
index eb57186..b136ae9 100644
--- a/include/vlc_input.h
+++ b/include/vlc_input.h
@@ -425,12 +425,18 @@ enum input_query_e
INPUT_GET_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,
+ /** Use the up arrow to select a navigation item above. res=can fail */
INPUT_NAV_UP,
+ /** Use the down arrow to select a navigation item under. res=can fail */
INPUT_NAV_DOWN,
+ /** Use the left arrow to select a navigation item on the left. res=can fail */
INPUT_NAV_LEFT,
+ /** Use the right arrow to select a navigation item on the right. res=can fail */
INPUT_NAV_RIGHT,
+ /** Activate the popup Menu (for BD). res=can fail */
INPUT_NAV_POPUP,
/* Meta datas */
More information about the vlc-commits
mailing list