2
0

return.html 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <html>
  2. <head>
  3. <title>Tremor - Return Codes</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>Return Codes</h1>
  14. <p>
  15. The following return codes are <tt>#define</tt>d in "ivorbiscodec.h"
  16. may be returned by libvorbisidec. Descriptions of a code relevant to
  17. a specific function are found in the reference description of that
  18. function.
  19. <dl>
  20. <dt>OV_FALSE</dt>
  21. <dd>Not true, or no data available</dd>
  22. <dt>OV_HOLE</dt>
  23. <dd>Tremor encoutered missing or corrupt data in the bitstream. Recovery
  24. is normally automatic and this return code is for informational purposes only.</dd>
  25. <dt>OV_EREAD</dt>
  26. <dd>Read error while fetching compressed data for decode</dd>
  27. <dt>OV_EFAULT</dt>
  28. <dd>Internal inconsistency in decode state. Continuing is likely not possible.</dd>
  29. <dt>OV_EIMPL</dt>
  30. <dd>Feature not implemented</dd>
  31. <dt>OV_EINVAL</dt>
  32. <dd>Either an invalid argument, or incompletely initialized argument passed to libvorbisidec call</dd>
  33. <dt>OV_ENOTVORBIS</dt>
  34. <dd>The given file/data was not recognized as Ogg Vorbis data.</dd>
  35. <dt>OV_EBADHEADER</dt>
  36. <dd>The file/data is apparently an Ogg Vorbis stream, but contains a corrupted or undecipherable header.</dd>
  37. <dt>OV_EVERSION</dt>
  38. <dd>The bitstream format revision of the given stream is not supported.</dd>
  39. <dt>OV_EBADLINK</dt>
  40. <dd>The given link exists in the Vorbis data stream, but is not decipherable due to garbacge or corruption.</dd>
  41. <dt>OV_ENOSEEK</dt>
  42. <dd>The given stream is not seekable</dd>
  43. </dl>
  44. <br><br>
  45. <hr noshade>
  46. <table border=0 width=100%>
  47. <tr valign=top>
  48. <td><p class=tiny>copyright &copy; 2002 Xiph.org</p></td>
  49. <td align=right><p class=tiny><a href="http://www.xiph.org/ogg/vorbis/">Ogg Vorbis</a></p></td>
  50. </tr><tr>
  51. <td><p class=tiny>Tremor documentation</p></td>
  52. <td align=right><p class=tiny>Tremor version 1.0 - 20020403</p></td>
  53. </tr>
  54. </table>
  55. </body>
  56. </html>