Displaying 2 results from an estimated 2 matches for "ov_enoseek".
2001 Mar 01
2
ov_time_seek to 0s fails... AGAIN
...fail, returning OV_EFAULT (from ov_pcm_seek_page). I think this must
be a bug, because seeking to 0 seconds *should* be OK.
Another thing, when ov_time_seek fails with OV_EFAULT, you cannot continue
playing
(because of the goto seek_error). This is not clear from the documentation at
all, after a OV_ENOSEEK or OV_EINVAL error it seems to me that you can continue
decoding.
This had me bugged for quite some time, it caused a floating point divide
by zero
in ov_time_tell (causing it to return -INF), because vf->vi[link].rate is
apparently
set to zero in the seek_error part.
I think the documentati...
2002 Mar 18
2
[PATCH] make vorbis work with KDE 3.0
...is/lib/vorbisfile.c,v
retrieving revision 1.59
diff -u -r1.59 vorbisfile.c
--- lib/vorbisfile.c 2002/03/07 03:41:03 1.59
+++ lib/vorbisfile.c 2002/03/18 09:36:43
@@ -1175,6 +1175,7 @@
/* dump machine so we're in a known state */
vf->pcm_offset=-1;
_decode_clear(vf);
+ ret=OV_ENOSEEK;
return ret;
}
<p>--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'vorbis-dev-request@xiph.org'
containing only the word 'unsubscribe' in the body. No subject is...