From 05d819a9a5927448bedb42da04baefb6fbf34d04 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Thu, 24 Apr 2003 18:56:47 +0000 Subject: [PATCH] We're not at EOS after a successfull seek (fixes #111498) Original commit message from CVS: We're not at EOS after a successfull seek (fixes #111498) --- ext/vorbis/vorbisfile.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/vorbis/vorbisfile.c b/ext/vorbis/vorbisfile.c index 57a3ff1..2bfaef7 100644 --- a/ext/vorbis/vorbisfile.c +++ b/ext/vorbis/vorbisfile.c @@ -315,6 +315,7 @@ gst_vorbisfile_seek (void *datasource, int64_t offset, int whence) if (!gst_bytestream_seek (vorbisfile->bs, offset, method)) return -1; + vorbisfile->eos = FALSE; vorbisfile->offset = pending_offset; if (need_total) vorbisfile->total_bytes = gst_bytestream_tell (vorbisfile->bs) + offset; -- 2.7.4