diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2002-09-02 03:21:38 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2002-09-02 03:21:38 +0000 |
commit | 1370361ab9168ffe4aedeab5cccedcd02e3a8131 (patch) | |
tree | 96ce55f5072c1496d2850747e615dbdb1fd5b52a | |
parent | 426bc7f85ec0d201edf9430886d9600d31ce8dae (diff) | |
download | xine-lib-1370361ab9168ffe4aedeab5cccedcd02e3a8131.tar.gz xine-lib-1370361ab9168ffe4aedeab5cccedcd02e3a8131.tar.bz2 |
Implement proper prev/next chapter.
CVS patchset: 2587
CVS date: 2002/09/02 03:21:38
-rw-r--r-- | src/input/input_dvd.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c index 1773980db..6d4d0cc05 100644 --- a/src/input/input_dvd.c +++ b/src/input/input_dvd.c @@ -18,7 +18,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: input_dvd.c,v 1.67 2002/08/31 02:48:13 jcdutton Exp $ + * $Id: input_dvd.c,v 1.68 2002/09/02 03:21:38 jcdutton Exp $ * */ @@ -1073,10 +1073,10 @@ static void dvdnav_event_listener (void *this_gen, xine_event_t *event) { dvdnav_menu_call(this->dvdnav, DVD_MENU_Part); break; case XINE_EVENT_INPUT_NEXT: - dvdnav_next_pg_search(this->dvdnav); + dvdnav_next_part_search(this->dvdnav); break; case XINE_EVENT_INPUT_PREVIOUS: - dvdnav_prev_pg_search(this->dvdnav); + dvdnav_prev_part_search(this->dvdnav); break; case XINE_EVENT_INPUT_ANGLE_NEXT: { @@ -1463,6 +1463,9 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) { /* * $Log: input_dvd.c,v $ + * Revision 1.68 2002/09/02 03:21:38 jcdutton + * Implement proper prev/next chapter. + * * Revision 1.67 2002/08/31 02:48:13 jcdutton * Add a printf so we can tell if a user is using xine's libdvdnav or the one from * dvd.sf.net. |