diff options
Diffstat (limited to 'src/input/libdvdnav/navigation.c')
-rw-r--r-- | src/input/libdvdnav/navigation.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/input/libdvdnav/navigation.c b/src/input/libdvdnav/navigation.c index 28279c04a..fbf41e04a 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.4 2003/02/20 16:02:00 mroi Exp $ + * $Id: navigation.c,v 1.5 2003/02/26 20:44:15 mroi Exp $ * */ @@ -39,6 +39,20 @@ dvdnav_status_t dvdnav_still_skip(dvdnav_t *this) { this->position_current.still = 0; this->skip_still = 1; + this->sync_wait = 0; + this->sync_wait_skip = 1; + + return S_OK; +} + +dvdnav_status_t dvdnav_wait_skip(dvdnav_t *this) { + if(!this) { + printerr("Passed a NULL pointer."); + return S_ERR; + } + + this->sync_wait = 0; + this->sync_wait_skip = 1; return S_OK; } |