Hello,
Can anyone help to provide a brief explaination on how to use the "libvlc_media_player_navigate" function ? From what I googled it, it appears it is related to DVD menu navigation, but it is not clear to me how to use it in conjunction with the following mode of operation :
typedef enum libvlc_navigate_mode_t
{
libvlc_navigate_activate = 0,
libvlc_navigate_up,
libvlc_navigate_down,
libvlc_navigate_left,
libvlc_navigate_right
} libvlc_navigate_mode_t;
I guess the "libvlc_navigate_activate" means to enable the navigation, but what about the rest, ie. what does it mean by xxx_up/down/left/right ? Is it not true that a list of possible navigation options have to be retrieved before one can decide where (up/down/left, right) to navigate to ? So which function can retrieve this list of options ? I can not seem to find anywhere.
Can anyone help and provide a use case on using this function ?
Thanks