diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-03-25 13:17:20 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-03-25 13:17:20 +0000 |
commit | 4e943eedd4a8cecf5926ded3ea8e9054b53cc26d (patch) | |
tree | 5ff01b958cea0e8b4cae5992469b6262ab011c08 /src/input/libdvdnav/navigation.c | |
parent | 02f1a32e5fb7f13b2f706f7d3efa125f2b100ead (diff) | |
download | xine-lib-4e943eedd4a8cecf5926ded3ea8e9054b53cc26d.tar.gz xine-lib-4e943eedd4a8cecf5926ded3ea8e9054b53cc26d.tar.bz2 |
sync to cvs of libdvdnav
* optional PGC based seeking
* new event on cell changes for timing info (currently not used by xine-lib)
CVS patchset: 4480
CVS date: 2003/03/25 13:17:20
Diffstat (limited to 'src/input/libdvdnav/navigation.c')
-rw-r--r-- | src/input/libdvdnav/navigation.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/input/libdvdnav/navigation.c b/src/input/libdvdnav/navigation.c index fbf41e04a..97b988fc6 100644 --- a/src/input/libdvdnav/navigation.c +++ b/src/input/libdvdnav/navigation.c @@ -17,7 +17,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: navigation.c,v 1.5 2003/02/26 20:44:15 mroi Exp $ + * $Id: navigation.c,v 1.6 2003/03/25 13:17:22 mroi Exp $ * */ @@ -156,6 +156,8 @@ dvdnav_status_t dvdnav_part_play(dvdnav_t *this, int title, int part) { return S_ERR; } retval = vm_jump_title_part(this->vm, title, part); + if (retval) + this->vm->hop_channel++; pthread_mutex_unlock(&this->vm_lock); return retval ? S_OK : S_ERR; |