vorbis-errors.txt 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. All 'failure' style returns are <0; this either indicates a generic
  2. 'false' value (eg, ready? T or F) or an error condition. Code can
  3. safely just test for < 0, or look at the specific return code for more
  4. detail.
  5. ---------- (internal calls) ------------
  6. long _get_next_page()
  7. OV_FALSE, OV_EOF, OV_EREAD
  8. long _get_prev_page()
  9. OV_EREAD, OV_FAULT
  10. int _bisect_forward_serialno()
  11. OV_EREAD
  12. int _fetch_headers()
  13. OV_EREAD, OV_ENOTVORBIS, OV_EVERSION, OV_EBADHEADER
  14. int _open_seekable()
  15. OV_EREAD, OV_ENOTVORBIS, OV_EVERSION, OV_EBADHEADER, OV_FAULT
  16. + ov_raw_seek
  17. int _open_nonseekable()
  18. OV_EREAD, OV_ENOTVORBIS, OV_EVERSION, OV_EBADHEADER
  19. int _process_packet()
  20. OV_EOF, OV_HOLE, OV_EBADLINK
  21. ---------- public calls ------------
  22. int vorbis_analysis_headerout()
  23. OV_EIMPL
  24. int vorbis_analysis_wrote()
  25. OV_EINVAL
  26. int vorbis_synthesis_headerin()
  27. OV_ENOTVORBIS, OV_EVERSION, OV_EBADHEADER
  28. int vorbis_synthesis()
  29. OV_ENOTAUDIO, OV_EBADPACKET
  30. int vorbis_synthesis_read()
  31. OV_EINVAL
  32. int ov_open_callbacks()
  33. OV_EREAD, OV_ENOTVORBIS, OV_EVERSION, OV_EBADHEADER, OV_FAULT
  34. int ov_open()
  35. OV_EREAD, OV_ENOTVORBIS, OV_EVERSION, OV_EBADHEADER, OV_FAULT
  36. long ov_bitrate()
  37. OV_EINVAL, OV_FALSE
  38. long ov_bitrate_instant()
  39. OV_FALSE
  40. ogg_int64_t ov_raw_total()
  41. OV_EINVAL
  42. ogg_int64_t ov_pcm_total()
  43. OV_EINVAL
  44. double ov_time_total()
  45. OV_EINVAL
  46. int ov_raw_seek()
  47. OV_ENOSEEK, OV_EINVAL, OV_BADLINK
  48. int ov_pcm_seek_page()
  49. OV_ENOSEEK, OV_EINVAL, OV_EREAD, OV_BADLINK, OV_FAULT
  50. int ov_pcm_seek()
  51. OV_ENOSEEK, OV_EINVAL, OV_EREAD, OV_BADLINK, OV_FAULT
  52. int ov_time_seek()
  53. OV_ENOSEEK, OV_EINVAL, OV_EREAD, OV_BADLINK, OV_FAULT
  54. int ov_time_seek_page()
  55. OV_ENOSEEK, OV_EINVAL, OV_EREAD, OV_BADLINK, OV_FAULT