From: Benjamin Otte Date: Thu, 24 Apr 2003 18:56:47 +0000 (+0000) Subject: We're not at EOS after a successfull seek (fixes #111498) X-Git-Tag: 1.19.3~511^2~15439 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=05d819a9a5927448bedb42da04baefb6fbf34d04;p=platform%2Fupstream%2Fgstreamer.git 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) --- diff --git a/ext/vorbis/vorbisfile.c b/ext/vorbis/vorbisfile.c index 57a3ff14b1..2bfaef7a71 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;