search for: oggz_tell

Displaying 8 results from an estimated 8 matches for "oggz_tell".

2010 Jan 29
1
What does oggz_tell() actually return?
Hello all, I'm trying to use liboggz to parse and display Ogg media files. I'm wondering what the return value of oggz_tell() actually is and how is one supposed to use it. The documentation says that oggz_tell() returns "the current offset of oggz". This sounds like it would be basically the file position indicator, and could be used to seek within the Ogg file to a specific byte position. The probl...
2012 May 21
1
Problems seeking with liboggz
...uot;, ofs); ofs = oggz_seek(pOGGZ, 0, SEEK_SET); ret = oggz_read(pOGGZ, 28779); for(int i=0; i<3; i++) { ogg_int64_t seektime = (i==0 ? 5000 : i==1 ? 10000 : 13000); ogg_int64_t rseek = oggz_seek_units(pOGGZ, seektime, SEEK_SET); ogg_int64_t tellseek = oggz_tell_units(pOGGZ); printf("\n Requested seek time = %8lld, return of time seek function = %8lld, return of time tell function = %8lld", seektime, rseek, tellseek); } oggz_close(pOGGZ); return 0; } //--------------------------------------------------------------------------...
2006 Mar 12
0
liboggz 0.9.5 Release
...ation about OggPCM, see: http://wiki.xiph.org/index.php/OggPCM * ./configure support for large (>2GB) files This version adds build configuration support for large files, allowing liboggz to operate on files >2GB. This version does not introduce any API changes; interfaces such as oggz_tell() continue to use off_t externally. However, sequential reading and validation of large files is now possible. * bug fixes and cleanups: - oggz-validate, oggzmerge, oggzdump, oggz-scan, oggzinfo: handle unknown content types (Ian Malone) - remove deprecated oggzed example - various code a...
2009 Oct 08
0
Oggz 1.1.0 Release
...ic API ---------- * Added <oggz/oggz_packet.h>: add oggz_packet definition, and implement reader to return oggz_packet in OggzReadPacket callback. * Updated shared version info to 8.0.6 Internal -------- * Improved accuracy of byte position tracking during reading, as reported by oggz_tell() About Oggz ========== oggz tool --------- Usage: oggz <subcommand> [options] filename ... oggz is a commandline tool for manipulating Ogg files. It supports multiplexed files conformant with RFC3533. Oggz can parse headers for CELT, CMML, FLAC, Kate, PCM, Speex, Theora and Vorbis, and...
2009 Sep 14
0
Oggz 1.0.0 Release
...dle 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: always set the internal offset to the start of the current page. This is returned by oggz_tell() and can be queried within a ReadPage callback. * oggz_read: Fix packetno check for holes in headers. The packetno has not yet been incremented, so the value to check is off-by-one. * Annodex #1581: avoid _oggz_comment_add_byname() strcmp of NULL (keelerda) * Mozilla #499604, Annodex...
2012 May 21
0
Problems seeking with liboggz
...et = oggz_read(pOGGZ, 28779); > > > > for(int i=0; i<3; i++) > > { > > ogg_int64_t seektime = (i==0 ? 5000 : i==1 ? 10000 : 13000); > > ogg_int64_t rseek = oggz_seek_units(pOGGZ, seektime, > SEEK_SET); > > ogg_int64_t tellseek = oggz_tell_units(pOGGZ); > > printf("\n Requested seek time = %8lld, return of time seek > function = %8lld, return of time tell function = %8lld", seektime, > rseek, tellseek); > > } > > > > oggz_close(pOGGZ); > > return 0; > > } > > //-...
2012 May 23
0
Problems seeking with liboggz
...et = oggz_read(pOGGZ, 28779); > > > > for(int i=0; i<3; i++) > > { > > ogg_int64_t seektime = (i==0 ? 5000 : i==1 ? 10000 : 13000); > > ogg_int64_t rseek = oggz_seek_units(pOGGZ, seektime, > SEEK_SET); > > ogg_int64_t tellseek = oggz_tell_units(pOGGZ); > > printf("\n Requested seek time = %8lld, return of time seek > function = %8lld, return of time tell function = %8lld", seektime, > rseek, tellseek); > > } > > > > oggz_close(pOGGZ); > > return 0; > > } > > //-...
2012 May 16
2
Problems seeking with liboggz
Hi, I intend to use Ogg+Speex for voice recording/playback in a VoIP app. I am experimenting with liboggz to get acquainted with its API. As test files I am using some Ogg-Speex files converted from WAV files with speexenc.exe. I wrote a little testing app in Visual Studio 2010 under Windows 7. I defined OggzReadPage and OggzReadPacket callbacks with oggz_set_read_page()