annotate src/libvorbis-1.3.3/doc/vorbisfile/datastructures.html @ 127:7867fa7e1b6b

Current fftw source
author Chris Cannam <cannam@all-day-breakfast.com>
date Tue, 18 Oct 2016 13:40:26 +0100
parents 98c1576536ae
children
rev   line source
cannam@86 1 <html>
cannam@86 2
cannam@86 3 <head>
cannam@86 4 <title>Vorbisfile - Base Data Structures</title>
cannam@86 5 <link rel=stylesheet href="style.css" type="text/css">
cannam@86 6 </head>
cannam@86 7
cannam@86 8 <body bgcolor=white text=black link="#5555ff" alink="#5555ff" vlink="#5555ff">
cannam@86 9 <table border=0 width=100%>
cannam@86 10 <tr>
cannam@86 11 <td><p class=tiny>Vorbisfile documentation</p></td>
cannam@86 12 <td align=right><p class=tiny>vorbisfile version 1.3.2 - 20101101</p></td>
cannam@86 13 </tr>
cannam@86 14 </table>
cannam@86 15
cannam@86 16 <h1>Base Data Structures</h1>
cannam@86 17 <p>There are several data structures used to hold file and bitstream information during libvorbisfile decoding. These structures are declared in "vorbis/vorbisfile.h" and "vorbis/codec.h".
cannam@86 18 <p>
cannam@86 19 <p>When using libvorbisfile, it's not necessary to know about most of the contents of these data structures, but it may be helpful to understand what they contain.
cannam@86 20 <br><br>
cannam@86 21
cannam@86 22 <table border=1 color=black width=50% cellspacing=0 cellpadding=7>
cannam@86 23 <tr bgcolor=#cccccc>
cannam@86 24 <td><b>datatype</b></td>
cannam@86 25 <td><b>purpose</b></td>
cannam@86 26 </tr>
cannam@86 27 <tr valign=top>
cannam@86 28 <td><a href="OggVorbis_File.html">OggVorbis_File</a></td>
cannam@86 29 <td>This structure represents the basic file information. It contains
cannam@86 30 a pointer to the physical file or bitstream and various information about that bitstream.</td>
cannam@86 31 </tr>
cannam@86 32 <tr valign=top>
cannam@86 33 <td><a href="../libvorbis/vorbis_comment.html">vorbis_comment</a></td>
cannam@86 34 <td>This structure contains the file comments. It contains
cannam@86 35 a pointer to unlimited user comments, information about the number of comments, and a vendor description.</td>
cannam@86 36 </tr>
cannam@86 37 <tr valign=top>
cannam@86 38 <td><a href="../libvorbis/vorbis_info.html">vorbis_info</a></td>
cannam@86 39 <td>This structure contains encoder-related information about the bitstream. It includes encoder info, channel info, and bitrate limits.</td>
cannam@86 40 </tr>
cannam@86 41 <tr valign=top>
cannam@86 42 <td><a href="ov_callbacks.html">ov_callbacks</a></td>
cannam@86 43 <td>This structure contains pointers to the application-specified file manipulation routines set for use by <a href="ov_open_callbacks.html">ov_open_callbacks()</a>. See also the <a href="callbacks.html">provided document on using application-provided callbacks instead of stdio</a>.</td>
cannam@86 44 </tr>
cannam@86 45 </table>
cannam@86 46
cannam@86 47 <br><br>
cannam@86 48 <hr noshade>
cannam@86 49 <table border=0 width=100%>
cannam@86 50 <tr valign=top>
cannam@86 51 <td><p class=tiny>copyright &copy; 2000-2010 Xiph.Org</p></td>
cannam@86 52 <td align=right><p class=tiny><a href="http://www.xiph.org/ogg/vorbis/">Ogg Vorbis</a></p></td>
cannam@86 53 </tr><tr>
cannam@86 54 <td><p class=tiny>Vorbisfile documentation</p></td>
cannam@86 55 <td align=right><p class=tiny>vorbisfile version 1.3.2 - 20101101</p></td>
cannam@86 56 </tr>
cannam@86 57 </table>
cannam@86 58
cannam@86 59 </body>
cannam@86 60
cannam@86 61 </html>