Whole document tree
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.
|