error.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /*
  2. * This file is part of FFmpeg.
  3. *
  4. * FFmpeg 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. * FFmpeg 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 FFmpeg; 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. #include "macros.h"
  27. /**
  28. * @addtogroup lavu_error
  29. *
  30. * @{
  31. */
  32. /* error handling */
  33. #if EDOM > 0
  34. #define AVERROR(e) (-(e)) ///< Returns a negative error code from a POSIX error code, to return from library functions.
  35. #define AVUNERROR(e) (-(e)) ///< Returns a POSIX error code from a library function error return value.
  36. #else
  37. /* Some platforms have E* and errno already negated. */
  38. #define AVERROR(e) (e)
  39. #define AVUNERROR(e) (e)
  40. #endif
  41. #define FFERRTAG(a, b, c, d) (-(int)MKTAG(a, b, c, d))
  42. #define AVERROR_BSF_NOT_FOUND FFERRTAG(0xF8,'B','S','F') ///< Bitstream filter not found
  43. #define AVERROR_BUG FFERRTAG( 'B','U','G','!') ///< Internal bug, also see AVERROR_BUG2
  44. #define AVERROR_BUFFER_TOO_SMALL FFERRTAG( 'B','U','F','S') ///< Buffer too small
  45. #define AVERROR_DECODER_NOT_FOUND FFERRTAG(0xF8,'D','E','C') ///< Decoder not found
  46. #define AVERROR_DEMUXER_NOT_FOUND FFERRTAG(0xF8,'D','E','M') ///< Demuxer not found
  47. #define AVERROR_ENCODER_NOT_FOUND FFERRTAG(0xF8,'E','N','C') ///< Encoder not found
  48. #define AVERROR_EOF FFERRTAG( 'E','O','F',' ') ///< End of file
  49. #define AVERROR_EXIT FFERRTAG( 'E','X','I','T') ///< Immediate exit was requested; the called function should not be restarted
  50. #define AVERROR_EXTERNAL FFERRTAG( 'E','X','T',' ') ///< Generic error in an external library
  51. #define AVERROR_FILTER_NOT_FOUND FFERRTAG(0xF8,'F','I','L') ///< Filter not found
  52. #define AVERROR_INVALIDDATA FFERRTAG( 'I','N','D','A') ///< Invalid data found when processing input
  53. #define AVERROR_MUXER_NOT_FOUND FFERRTAG(0xF8,'M','U','X') ///< Muxer not found
  54. #define AVERROR_OPTION_NOT_FOUND FFERRTAG(0xF8,'O','P','T') ///< Option not found
  55. #define AVERROR_PATCHWELCOME FFERRTAG( 'P','A','W','E') ///< Not yet implemented in FFmpeg, patches welcome
  56. #define AVERROR_PROTOCOL_NOT_FOUND FFERRTAG(0xF8,'P','R','O') ///< Protocol not found
  57. #define AVERROR_STREAM_NOT_FOUND FFERRTAG(0xF8,'S','T','R') ///< Stream not found
  58. /**
  59. * This is semantically identical to AVERROR_BUG
  60. * it has been introduced in Libav after our AVERROR_BUG and with a modified value.
  61. */
  62. #define AVERROR_BUG2 FFERRTAG( 'B','U','G',' ')
  63. #define AVERROR_UNKNOWN FFERRTAG( 'U','N','K','N') ///< Unknown error, typically from an external library
  64. #define AVERROR_EXPERIMENTAL (-0x2bb2afa8) ///< Requested feature is flagged experimental. Set strict_std_compliance if you really want to use it.
  65. #define AVERROR_INPUT_CHANGED (-0x636e6701) ///< Input changed between calls. Reconfiguration is required. (can be OR-ed with AVERROR_OUTPUT_CHANGED)
  66. #define AVERROR_OUTPUT_CHANGED (-0x636e6702) ///< Output changed between calls. Reconfiguration is required. (can be OR-ed with AVERROR_INPUT_CHANGED)
  67. /* HTTP & RTSP errors */
  68. #define AVERROR_HTTP_BAD_REQUEST FFERRTAG(0xF8,'4','0','0')
  69. #define AVERROR_HTTP_UNAUTHORIZED FFERRTAG(0xF8,'4','0','1')
  70. #define AVERROR_HTTP_FORBIDDEN FFERRTAG(0xF8,'4','0','3')
  71. #define AVERROR_HTTP_NOT_FOUND FFERRTAG(0xF8,'4','0','4')
  72. #define AVERROR_HTTP_OTHER_4XX FFERRTAG(0xF8,'4','X','X')
  73. #define AVERROR_HTTP_SERVER_ERROR FFERRTAG(0xF8,'5','X','X')
  74. #define AV_ERROR_MAX_STRING_SIZE 64
  75. /**
  76. * 将AVERROR代码errnum的描述放在errbuf中。
  77. * 在失败的情况下,设置全局变量errno来指示错误。
  78. * 即使在失败的情况下,av_strerror()也会打印一个通用的错误消息,指示提供给errbuf的errnum。
  79. *
  80. * @param errnum 要描述的错误代码
  81. * @param errbuf 写入描述的缓冲区
  82. * @param errbuf_size errbuf的大小,以字节为单位
  83. * @return 成功时为0,如果是errnum的描述则为负值
  84. * cannot be found
  85. */
  86. int av_strerror(int errnum, char *errbuf, size_t errbuf_size);
  87. /**
  88. * Fill the provided buffer with a string containing an error string
  89. * corresponding to the AVERROR code errnum.
  90. *
  91. * @param errbuf a buffer
  92. * @param errbuf_size size in bytes of errbuf
  93. * @param errnum error code to describe
  94. * @return the buffer in input, filled with the error description
  95. * @see av_strerror()
  96. */
  97. static inline char *av_make_error_string(char *errbuf, size_t errbuf_size, int errnum)
  98. {
  99. av_strerror(errnum, errbuf, errbuf_size);
  100. return errbuf;
  101. }
  102. /**
  103. * Convenience macro, the return value should be used only directly in
  104. * function arguments but never stand-alone.
  105. */
  106. #define av_err2str(errnum) \
  107. av_make_error_string((char[AV_ERROR_MAX_STRING_SIZE]){0}, AV_ERROR_MAX_STRING_SIZE, errnum)
  108. /**
  109. * @}
  110. */
  111. #endif /* AVUTIL_ERROR_H */