]> git.sesse.net Git - vlc/commitdiff
* Reset access->info.b_eof when we search. After you have read up untill the end...
authorDerk-Jan Hartman <hartman@videolan.org>
Thu, 7 Sep 2006 22:01:06 +0000 (22:01 +0000)
committerDerk-Jan Hartman <hartman@videolan.org>
Thu, 7 Sep 2006 22:01:06 +0000 (22:01 +0000)
modules/access/cdda/access.c
modules/access/vcd/vcd.c
modules/access/vcdx/access.c

index 3fa81698f3fb229464ddcf4ef0f895a4b8cf0646..4a8fddece3e87d8d63d6027250db50a6c2134415 100644 (file)
@@ -512,6 +512,7 @@ static int CDDASeek( access_t * p_access, int64_t i_pos )
     }
 
     p_access->info.i_pos = i_pos;
+    p_access->info.b_eof = VLC_FALSE;
     return VLC_SUCCESS;
 }
 
index 875b4d5c56e27d660314ad3dbe76bf4c8747d9e4..71299959af5b8a2210d24655dbbe159bf83a9d2f 100644 (file)
@@ -434,6 +434,9 @@ static int Seek( access_t *p_access, int64_t i_pos )
         p_access->info.i_seekpoint = i_seekpoint;
     }
 
+    /* Reset eof */
+    p_access->info.b_eof = VLC_FALSE;
+
     return VLC_SUCCESS;
 }
 
index 2febf8c79f2952262e4f6eb23f5091803a548996..5ae1f23907ee9d3628d335397b350397fbc963a2 100644 (file)
@@ -314,6 +314,7 @@ VCDSeek( access_t * p_access, int64_t i_pos )
        }
 
     }
+    p_access->info.b_eof = VLC_FALSE;
     return VLC_SUCCESS;
     
 }