search for: oggz_bounded_seek_set

Displaying 3 results from an estimated 3 matches for "oggz_bounded_seek_set".

2009 May 15
0
[PATCH] oggz: limit seeking to specified range
..._begin Start of offset range to seek inside, in bytes + * \param offset_end End of offset range to seek inside, in bytes, + pass -1 for end of media + * \returns The new position, in milliseconds or custom units + * \retval -1 on failure (unit_target is not within range) + */ +ogg_int64_t +oggz_bounded_seek_set (OGGZ * oggz, + ogg_int64_t unit_target, + ogg_int64_t offset_begin, + ogg_int64_t offset_end); + #endif /* __OGGZ_SEEK_H__ */ diff --git a/src/liboggz/oggz_seek.c b/src/liboggz/oggz_seek.c index a8c1476..faa08f0 100644 --- a/src/l...
2009 Aug 19
2
How to seek theora streams
I need to be exposed to a way of seeking theora streams. I have repeatedly found the same question asked on a different forums but could not find an answer. I'm working on a game and started integrating video with theora, the sound works just fine with ogg/vorbis(i find it easy to seek using ov_raw_seek for audio files). Could someone please point me to some example/code of how can i seek with
2009 Sep 14
0
Oggz 1.0.0 Release
...* add oggz.1 man page * add examples to chop, comment, dump, info, merge, rip and sort man pages * update ChangeLog with info from all release_notes * Add PATCHES file, update README Public API ---------- * Add ability to limit seeks to only search inside a specified byte range. Adds oggz_bounded_seek_set() public API call. * Updated shared version info to 7:0:6 Internal -------- * Handle Theora version > 3.2.0 initial granulepos 1|0 * Fix data alignment on ARM (Erik de Castro Lopo, Chris Double, Vladimir Vukicevic) * Fix for inefficient oggz_seek_units() (Sean Young) * oggz_read: a...