ov_raw_tell.html 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <html>
  2. <head>
  3. <title>Vorbisfile - function - ov_raw_tell</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>Vorbisfile documentation</p></td>
  10. <td align=right><p class=tiny>vorbisfile version 1.2.0 - 20070723</p></td>
  11. </tr>
  12. </table>
  13. <h1>ov_raw_tell</h1>
  14. <p><i>declared in "vorbis/vorbisfile.h";</i></p>
  15. <p>Returns the current offset in raw compressed bytes.</p>
  16. <p>Note that if you later use ov_raw_seek() to return to this point, you won't generally get back to exactly the same place, due to internal buffering. Also note that a read operation may not cause a change to the current raw offset - only a read that requires reading more data from the underlying data source will do that.</p>
  17. <br><br>
  18. <table border=0 color=black cellspacing=0 cellpadding=7>
  19. <tr bgcolor=#cccccc>
  20. <td>
  21. <pre><b>
  22. ogg_int64_t ov_raw_tell(OggVorbis_File *vf);
  23. </b></pre>
  24. </td>
  25. </tr>
  26. </table>
  27. <h3>Parameters</h3>
  28. <dl>
  29. <dt><i>vf</i></dt>
  30. <dd>A pointer to the OggVorbis_File structure--this is used for ALL the externally visible libvorbisfile
  31. functions.</dd>
  32. </dl>
  33. <h3>Return Values</h3>
  34. <blockquote>
  35. <li><i>n</i> indicates the current offset in bytes.</li>
  36. <li>OV_EINVAL means that the argument was invalid. In this case, the requested bitstream did not exist.</li>
  37. </blockquote>
  38. <p>
  39. <br><br>
  40. <hr noshade>
  41. <table border=0 width=100%>
  42. <tr valign=top>
  43. <td><p class=tiny>copyright &copy; 2007 Xiph.org</p></td>
  44. <td align=right><p class=tiny><a href="http://www.xiph.org/ogg/vorbis/">Ogg Vorbis</a></p></td>
  45. </tr><tr>
  46. <td><p class=tiny>Vorbisfile documentation</p></td>
  47. <td align=right><p class=tiny>vorbisfile version 1.2.0 - 20070723</p></td>
  48. </tr>
  49. </table>
  50. </body>
  51. </html>