diff dvdnav.c @ 66:2bd4a78eefce src

Patch from aschultz@cs.uni-magdeburg.de to allow for still-frame 'peek-ahead'
author richwareham
date Thu, 25 Jul 2002 14:42:33 +0000
parents 30995ad032cf
children 61c0ee1bbb7a
line wrap: on
line diff
--- a/dvdnav.c	Sun Jul 21 10:16:45 2002 +0000
+++ b/dvdnav.c	Thu Jul 25 14:42:33 2002 +0000
@@ -976,8 +976,23 @@
   return S_OK;
 } 
 
+dsi_t* dvdnav_get_current_nav_dsi(dvdnav_t *this) {
+  if(!this || !this->vm) return 0;
+  return &this->dsi;
+}
+
+uint32_t dvdnav_get_next_still_flag(dvdnav_t *this) {
+  if(!this || !this->vm) {
+    return S_ERR;
+  }
+  return this->position_next.still;
+}
+
 /*
  * $Log$
+ * Revision 1.28  2002/07/25 14:42:33  richwareham
+ * Patch from aschultz@cs.uni-magdeburg.de to allow for still-frame 'peek-ahead'
+ *
  * Revision 1.27  2002/07/12 15:46:44  mroi
  * use new memcopy'less read ahead cache
  *