diff read_cache.c @ 37:832ca4921e04 src

Fixed (what appears to be) an error in JumpVTS_PTT implementation, it didn't call play_PGC after jumping.
author richwareham
date Thu, 30 May 2002 15:56:41 +0000
parents 1f29402ef2ef
children a049c3753f32
line wrap: on
line diff
--- a/read_cache.c	Thu May 30 14:26:59 2002 +0000
+++ b/read_cache.c	Thu May 30 15:56:41 2002 +0000
@@ -31,9 +31,17 @@
 /* Read-ahead cache structure. */
 #if _MULTITHREAD_
 struct read_cache_s {
+
+  /* Bounds on read ahead buffer */
+  off_t      low_bound;
+  off_t      high_bound;
+
+  /* Where we are currently 'reading' from */
+  
   /* Bit of strange cross-linking going on here :) -- Gotta love C :) */
   dvdnav_t    *dvd_self;
 };
+
 #else
 struct read_cache_s {
   /* Read-ahead cache. */