datastructures.html 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <html>
  2. <head>
  3. <title>Tremor - Base Data Structures</title>
  4. <link rel=stylesheet href="style.css" type="text/css">
  5. </head>
  6. <body bgcolor=white text=black link="#5555ff" alink="#5555ff" vlink="#5555ff">
  7. <table border=0 width=100%>
  8. <tr>
  9. <td><p class=tiny>Tremor documentation</p></td>
  10. <td align=right><p class=tiny>Tremor version 1.0 - 20020403</p></td>
  11. </tr>
  12. </table>
  13. <h1>Base Data Structures</h1>
  14. <p>There are several data structures used to hold file and bitstream information during libvorbisidec decoding. These structures are declared in "ivorbisfile.h" and "ivorbiscodec.h".
  15. <p>
  16. <p>When using libvorbisidec, 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.
  17. <br><br>
  18. <table border=1 color=black width=50% cellspacing=0 cellpadding=7>
  19. <tr bgcolor=#cccccc>
  20. <td><b>datatype</b></td>
  21. <td><b>purpose</b></td>
  22. </tr>
  23. <tr valign=top>
  24. <td><a href="OggVorbis_File.html">OggVorbis_File</a></td>
  25. <td>This structure represents the basic file information. It contains
  26. a pointer to the physical file or bitstream and various information about that bitstream.</td>
  27. </tr>
  28. <tr valign=top>
  29. <td><a href="vorbis_comment.html">vorbis_comment</a></td>
  30. <td>This structure contains the file comments. It contains
  31. a pointer to unlimited user comments, information about the number of comments, and a vendor description.</td>
  32. </tr>
  33. <tr valign=top>
  34. <td><a href="vorbis_info.html">vorbis_info</a></td>
  35. <td>This structure contains encoder-related information about the bitstream. It includes encoder info, channel info, and bitrate limits.</td>
  36. </tr>
  37. <tr valign=top>
  38. <td><a href="ov_callbacks.html">ov_callbacks</a></td>
  39. <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>
  40. </tr>
  41. </table>
  42. <br><br>
  43. <hr noshade>
  44. <table border=0 width=100%>
  45. <tr valign=top>
  46. <td><p class=tiny>copyright &copy; 2002 Xiph.org</p></td>
  47. <td align=right><p class=tiny><a href="http://www.xiph.org/ogg/vorbis/">Ogg Vorbis</a></p></td>
  48. </tr><tr>
  49. <td><p class=tiny>Tremor documentation</p></td>
  50. <td align=right><p class=tiny>Tremor version 1.0 - 20020403</p></td>
  51. </tr>
  52. </table>
  53. </body>
  54. </html>