oggpack_buffer.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <html>
  2. <head>
  3. <title>libogg - datatype - oggpack_buffer</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>libogg documentation</p></td>
  10. <td align=right><p class=tiny>libogg release 1.3.4 - 20190830</p></td>
  11. </tr>
  12. </table>
  13. <h1>oggpack_buffer</h1>
  14. <p><i>declared in "ogg/ogg.h"</i></p>
  15. <p>
  16. The oggpack_buffer struct is used with libogg's bitpacking functions. You should never need to directly access anything in this structure.
  17. <p>
  18. <table border=0 width=100% color=black cellspacing=0 cellpadding=7>
  19. <tr bgcolor=#cccccc>
  20. <td>
  21. <pre><b>
  22. typedef struct {
  23. long endbyte;
  24. int endbit;
  25. unsigned char *buffer;
  26. unsigned char *ptr;
  27. long storage;
  28. } oggpack_buffer;
  29. </b></pre>
  30. </td>
  31. </tr>
  32. </table>
  33. <h3>Relevant Struct Members</h3>
  34. <dl>
  35. <dt><i>buffer</i></dt>
  36. <dd>Pointer to data being manipulated.</dd>
  37. <dt><i>ptr</i></dt>
  38. <dd>Location pointer to mark which data has been read.</dd>
  39. <dt><i>storage</i></dt>
  40. <dd>Size of buffer.</i></dt>
  41. </dl>
  42. <br><br>
  43. <hr noshade>
  44. <table border=0 width=100%>
  45. <tr valign=top>
  46. <td><p class=tiny>copyright &copy; 2000-2019 Xiph.Org Foundation</p></td>
  47. <td align=right><p class=tiny><a href="http://www.xiph.org/ogg/">Ogg Container Format</a></p></td>
  48. </tr><tr>
  49. <td><p class=tiny>libogg documentation</p></td>
  50. <td align=right><p class=tiny>libogg release 1.3.4 - 20190830</p></td>
  51. </tr>
  52. </table>
  53. </body>
  54. </html>