Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 uid=99(nobody) gid=98(nobody) groups=98(nobody) Safe-mode: OFF (not secure) /usr/doc/libvorbis-1.0/vorbisfile/ drwxr-xr-x | |
| Viewing file: Select action/file-type:
Example CodeThe following is a run-through of the seeking example program supplied with vorbisfile - seeking_test.c. This program tests the vorbisfile ov_time_seek function by seeking to random points within the file.
First, relevant headers, including vorbis-specific "codec.h" and "vorbisfile.h" have to be included.
Inside main(), we declare our primary OggVorbis_File structure. We also declare a other helpful variables to track our progress within the file.
ov_open() must be
called to initialize the OggVorbis_File structure with default values.
ov_open() also checks to ensure that we're reading Vorbis format and not something else.
First we check to make sure the stream is seekable using ov_seekable. Then we seek to 100 random spots in the bitstream using ov_time_seek with randomly generated values.
When we're done seeking, we need to call ov_clear() to release the bitstream.
The full source for seeking_test.c can be found with the vorbis
distribution in seeking_test.c.
|
:: Command execute :: | |
--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0339 ]-- |