Vorbisfile documentation |
vorbisfile version 1.68 - 20030307 |
The following is a run-through of the chaining example program supplied with vorbisfile - chaining_example.c. This program demonstrates how to work with a chained bitstream.
First, relevant headers, including vorbis-specific "codec.h" and "vorbisfile.h" have to be included.
#include "vorbis/codec.h" #include "vorbis/vorbisfile.h" #include "../lib/misc.h" |
Inside main(), we declare our primary OggVorbis_File structure. We also declare a other helpful variables to track our progress within the file.
int main(){ OggVorbis_File ov; int i; |
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.
if(ov_open(stdin,&ov,NULL,-1)<0){ printf("Could not open input as an OggVorbis file.\n\n"); exit(1); } |
First we check to make sure the stream is seekable using ov_seekable.
Then we're going to find the number of logical bitstreams in the physical bitstream using ov_streams.
We use ov_time_total to determine the total length of the physical bitstream. We specify that we want the entire bitstream by using the argument -1.
if(ov_seekable(&ov)){ printf("Input bitstream contained %ld logical bitstream section(s).\n", ov_streams(&ov)); printf("Total bitstream playing time: %ld seconds\n\n", (long)ov_time_total(&ov,-1)); }else{ printf("Standard input was not seekable.\n" "First logical bitstream information:\n\n"); } |
Now we're going to iterate through each logical bitstream and print information about that bitstream.
We use ov_info to pull out the vorbis_info struct for each logical bitstream. This struct contains bitstream-specific info.
ov_serialnumber retrieves the unique serial number for the logical bistream. ov_raw_total gives the total compressed bytes for the logical bitstream, and ov_time_total gives the total time in the logical bitstream.
for(i=0;i |
When we're done with the entire physical bitstream, we need to call ov_clear() to release the bitstream.
ov_clear(&ov); return 0; } |
The full source for chaining_example.c can be found with the vorbis
distribution in chaining_example.c.
copyright © 2003 Xiph.org |
|
Vorbisfile documentation |
vorbisfile version 1.68 - 20030307 |