Displaying 2 results from an estimated 2 matches for "ov_raw_tel".
Did you mean:
ov_raw_tell
2005 Aug 16
1
ov_raw_tell() not working properly!
I'm working on an application where I need to record
the current playing position and return to it later.
and I need this to be done the most efficient way, so
I used ov_raw_tell() and ov_raw_seek() because the
documentation says they are the best when speed is a
concern.
but the problem is that sometimes ov_raw_tell returns
the same value before and after calling ov_read;
here's an example:
prevPos = ov_raw_tell(&vf);
const long ret = ov_read(&vf, temp_buffer...
2003 Jan 23
3
Exact decode positioning
Hi,
I'm busy working on a method of synchronising playback between two ogg
decoders. To do this reliably, I need to create a cross-reference of the
raw & pcm offsets in the bitstream. I have tried using the ov_raw/pcm_tell
calls, but it appears as if the ov_raw_tell() only updates itsself in steps
of 4096 bytes (as each read callback is done). This gives me a
cross-reference every 120ms or so, which isn't quite often enough for my
application.
Is there anyway of finding the codec's position in the raw stream more
precisely (e.g. whenever a frame...