ogg_iovec_t.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <html>
  2. <head>
  3. <title>libogg - datatype - ogg_iovec_t</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.2 - 20140527</p></td>
  11. </tr>
  12. </table>
  13. <h1>ogg_iovec_t</h1>
  14. <p><i>declared in "ogg/ogg.h"</i></p>
  15. <p>
  16. The ogg_iovec_t struct encapsulates a length-encoded buffer. An array
  17. of ogg_iovec_t is used to pass a list of buffers to functions that
  18. accept data in ogg_iovec_t* form.
  19. <p>
  20. <table border=0 width=100% color=black cellspacing=0 cellpadding=7>
  21. <tr bgcolor=#cccccc>
  22. <td>
  23. <pre><b>
  24. typedef struct {
  25. void *iov_base;
  26. size_t iov_len;
  27. } ogg_iovec_t;
  28. </b></pre>
  29. </td>
  30. </tr>
  31. </table>
  32. <h3>Relevant Struct Members</h3>
  33. <dl>
  34. <dt><i>iov_base</i></dt>
  35. <dd>Pointer to the buffer data.</dd>
  36. <dt><i>iov_len</i></dt>
  37. <dd>Length of buffer data in bytes.</dd>
  38. </dl>
  39. <br><br>
  40. <hr noshade>
  41. <table border=0 width=100%>
  42. <tr valign=top>
  43. <td><p class=tiny>copyright &copy; 2000-2014 Xiph.Org</p></td>
  44. <td align=right><p class=tiny><a href="http://www.xiph.org/ogg/">Ogg Container Format</a></p></td>
  45. </tr><tr>
  46. <td><p class=tiny>libogg documentation</p></td>
  47. <td align=right><p class=tiny>libogg release 1.3.2 - 20140527</p></td>
  48. </tr>
  49. </table>
  50. </body>
  51. </html>