Commit 551cd1d5 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* Reset access->info.b_eof when we search. After you have read up untill the...

* Reset access->info.b_eof when we search. After you have read up untill the end, (like ps does), you can search back to the beginning, provided the access module allows this.
parent b26a3e61
......@@ -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;
}
......
......@@ -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;
}
......
......@@ -314,6 +314,7 @@ VCDSeek( access_t * p_access, int64_t i_pos )
}
}
p_access->info.b_eof = VLC_FALSE;
return VLC_SUCCESS;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment