We're not at EOS after a successfull seek (fixes #111498)
authorBenjamin Otte <otte@gnome.org>
Thu, 24 Apr 2003 18:56:47 +0000 (18:56 +0000)
committerBenjamin Otte <otte@gnome.org>
Thu, 24 Apr 2003 18:56:47 +0000 (18:56 +0000)
Original commit message from CVS:
We're not at EOS after a successfull seek (fixes #111498)

ext/vorbis/vorbisfile.c

index 57a3ff1..2bfaef7 100644 (file)
@@ -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;