error.h 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. * This file is part of Libav.
  3. *
  4. * Libav is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * Libav is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with Libav; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. /**
  19. * @file
  20. * error code definitions
  21. */
  22. #ifndef AVUTIL_ERROR_H
  23. #define AVUTIL_ERROR_H
  24. #include <errno.h>
  25. #include <stddef.h>
  26. /**
  27. * @addtogroup lavu_error
  28. *
  29. * @{
  30. */
  31. /* error handling */
  32. #if EDOM > 0
  33. #define AVERROR(e) (-(e)) ///< Returns a negative error code from a POSIX error code, to return from library functions.
  34. #define AVUNERROR(e) (-(e)) ///< Returns a POSIX error code from a library function error return value.
  35. #else
  36. /* Some platforms have E* and errno already negated. */
  37. #define AVERROR(e) (e)
  38. #define AVUNERROR(e) (e)
  39. #endif
  40. #define AVERROR_BSF_NOT_FOUND (-0x39acbd08) ///< Bitstream filter not found
  41. #define AVERROR_DECODER_NOT_FOUND (-0x3cbabb08) ///< Decoder not found
  42. #define AVERROR_DEMUXER_NOT_FOUND (-0x32babb08) ///< Demuxer not found
  43. #define AVERROR_ENCODER_NOT_FOUND (-0x3cb1ba08) ///< Encoder not found
  44. #define AVERROR_EOF (-0x5fb9b0bb) ///< End of file
  45. #define AVERROR_EXIT (-0x2bb6a7bb) ///< Immediate exit was requested; the called function should not be restarted
  46. #define AVERROR_FILTER_NOT_FOUND (-0x33b6b908) ///< Filter not found
  47. #define AVERROR_INVALIDDATA (-0x3ebbb1b7) ///< Invalid data found when processing input
  48. #define AVERROR_MUXER_NOT_FOUND (-0x27aab208) ///< Muxer not found
  49. #define AVERROR_OPTION_NOT_FOUND (-0x2bafb008) ///< Option not found
  50. #define AVERROR_PATCHWELCOME (-0x3aa8beb0) ///< Not yet implemented in Libav, patches welcome
  51. #define AVERROR_PROTOCOL_NOT_FOUND (-0x30adaf08) ///< Protocol not found
  52. #define AVERROR_STREAM_NOT_FOUND (-0x2dabac08) ///< Stream not found
  53. #define AVERROR_BUG (-0x5fb8aabe) ///< Bug detected, please report the issue
  54. #define AVERROR_UNKNOWN (-0x31b4b1ab) ///< Unknown error, typically from an external library
  55. #define AVERROR_EXPERIMENTAL (-0x2bb2afa8) ///< Requested feature is flagged experimental. Set strict_std_compliance if you really want to use it.
  56. #define AVERROR_INPUT_CHANGED (-0x636e6701) ///< Input changed between calls. Reconfiguration is required. (can be OR-ed with AVERROR_OUTPUT_CHANGED)
  57. #define AVERROR_OUTPUT_CHANGED (-0x636e6702) ///< Output changed between calls. Reconfiguration is required. (can be OR-ed with AVERROR_INPUT_CHANGED)
  58. /**
  59. * Put a description of the AVERROR code errnum in errbuf.
  60. * In case of failure the global variable errno is set to indicate the
  61. * error. Even in case of failure av_strerror() will print a generic
  62. * error message indicating the errnum provided to errbuf.
  63. *
  64. * @param errnum error code to describe
  65. * @param errbuf buffer to which description is written
  66. * @param errbuf_size the size in bytes of errbuf
  67. * @return 0 on success, a negative value if a description for errnum
  68. * cannot be found
  69. */
  70. int av_strerror(int errnum, char *errbuf, size_t errbuf_size);
  71. /**
  72. * @}
  73. */
  74. #endif /* AVUTIL_ERROR_H */