Path: blob/a-new-beginning/libavutil.xcframework/ios-arm64-simulator/libavutil.framework/Headers/error.h
2 views
/*1* This file is part of FFmpeg.2*3* FFmpeg is free software; you can redistribute it and/or4* modify it under the terms of the GNU Lesser General Public5* License as published by the Free Software Foundation; either6* version 2.1 of the License, or (at your option) any later version.7*8* FFmpeg is distributed in the hope that it will be useful,9* but WITHOUT ANY WARRANTY; without even the implied warranty of10* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU11* Lesser General Public License for more details.12*13* You should have received a copy of the GNU Lesser General Public14* License along with FFmpeg; if not, write to the Free Software15* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA16*/1718/**19* @file20* error code definitions21*/2223#ifndef AVUTIL_ERROR_H24#define AVUTIL_ERROR_H2526#include <errno.h>27#include <stddef.h>2829#include "macros.h"3031/**32* @addtogroup lavu_error33*34* @{35*/363738/* error handling */39#if EDOM > 040#define AVERROR(e) (-(e)) ///< Returns a negative error code from a POSIX error code, to return from library functions.41#define AVUNERROR(e) (-(e)) ///< Returns a POSIX error code from a library function error return value.42#else43/* Some platforms have E* and errno already negated. */44#define AVERROR(e) (e)45#define AVUNERROR(e) (e)46#endif4748#define FFERRTAG(a, b, c, d) (-(int)MKTAG(a, b, c, d))4950#define AVERROR_BSF_NOT_FOUND FFERRTAG(0xF8,'B','S','F') ///< Bitstream filter not found51#define AVERROR_BUG FFERRTAG( 'B','U','G','!') ///< Internal bug, also see AVERROR_BUG252#define AVERROR_BUFFER_TOO_SMALL FFERRTAG( 'B','U','F','S') ///< Buffer too small53#define AVERROR_DECODER_NOT_FOUND FFERRTAG(0xF8,'D','E','C') ///< Decoder not found54#define AVERROR_DEMUXER_NOT_FOUND FFERRTAG(0xF8,'D','E','M') ///< Demuxer not found55#define AVERROR_ENCODER_NOT_FOUND FFERRTAG(0xF8,'E','N','C') ///< Encoder not found56#define AVERROR_EOF FFERRTAG( 'E','O','F',' ') ///< End of file57#define AVERROR_EXIT FFERRTAG( 'E','X','I','T') ///< Immediate exit was requested; the called function should not be restarted58#define AVERROR_EXTERNAL FFERRTAG( 'E','X','T',' ') ///< Generic error in an external library59#define AVERROR_FILTER_NOT_FOUND FFERRTAG(0xF8,'F','I','L') ///< Filter not found60#define AVERROR_INVALIDDATA FFERRTAG( 'I','N','D','A') ///< Invalid data found when processing input61#define AVERROR_MUXER_NOT_FOUND FFERRTAG(0xF8,'M','U','X') ///< Muxer not found62#define AVERROR_OPTION_NOT_FOUND FFERRTAG(0xF8,'O','P','T') ///< Option not found63#define AVERROR_PATCHWELCOME FFERRTAG( 'P','A','W','E') ///< Not yet implemented in FFmpeg, patches welcome64#define AVERROR_PROTOCOL_NOT_FOUND FFERRTAG(0xF8,'P','R','O') ///< Protocol not found6566#define AVERROR_STREAM_NOT_FOUND FFERRTAG(0xF8,'S','T','R') ///< Stream not found67/**68* This is semantically identical to AVERROR_BUG69* it has been introduced in Libav after our AVERROR_BUG and with a modified value.70*/71#define AVERROR_BUG2 FFERRTAG( 'B','U','G',' ')72#define AVERROR_UNKNOWN FFERRTAG( 'U','N','K','N') ///< Unknown error, typically from an external library73#define AVERROR_EXPERIMENTAL (-0x2bb2afa8) ///< Requested feature is flagged experimental. Set strict_std_compliance if you really want to use it.74#define AVERROR_INPUT_CHANGED (-0x636e6701) ///< Input changed between calls. Reconfiguration is required. (can be OR-ed with AVERROR_OUTPUT_CHANGED)75#define AVERROR_OUTPUT_CHANGED (-0x636e6702) ///< Output changed between calls. Reconfiguration is required. (can be OR-ed with AVERROR_INPUT_CHANGED)76/* HTTP & RTSP errors */77#define AVERROR_HTTP_BAD_REQUEST FFERRTAG(0xF8,'4','0','0')78#define AVERROR_HTTP_UNAUTHORIZED FFERRTAG(0xF8,'4','0','1')79#define AVERROR_HTTP_FORBIDDEN FFERRTAG(0xF8,'4','0','3')80#define AVERROR_HTTP_NOT_FOUND FFERRTAG(0xF8,'4','0','4')81#define AVERROR_HTTP_OTHER_4XX FFERRTAG(0xF8,'4','X','X')82#define AVERROR_HTTP_SERVER_ERROR FFERRTAG(0xF8,'5','X','X')8384#define AV_ERROR_MAX_STRING_SIZE 648586/**87* Put a description of the AVERROR code errnum in errbuf.88* In case of failure the global variable errno is set to indicate the89* error. Even in case of failure av_strerror() will print a generic90* error message indicating the errnum provided to errbuf.91*92* @param errnum error code to describe93* @param errbuf buffer to which description is written94* @param errbuf_size the size in bytes of errbuf95* @return 0 on success, a negative value if a description for errnum96* cannot be found97*/98int av_strerror(int errnum, char *errbuf, size_t errbuf_size);99100/**101* Fill the provided buffer with a string containing an error string102* corresponding to the AVERROR code errnum.103*104* @param errbuf a buffer105* @param errbuf_size size in bytes of errbuf106* @param errnum error code to describe107* @return the buffer in input, filled with the error description108* @see av_strerror()109*/110static inline char *av_make_error_string(char *errbuf, size_t errbuf_size, int errnum)111{112av_strerror(errnum, errbuf, errbuf_size);113return errbuf;114}115116/**117* Convenience macro, the return value should be used only directly in118* function arguments but never stand-alone.119*/120#define av_err2str(errnum) \121av_make_error_string((char[AV_ERROR_MAX_STRING_SIZE]){0}, AV_ERROR_MAX_STRING_SIZE, errnum)122123/**124* @}125*/126127#endif /* AVUTIL_ERROR_H */128129130