World of Might and Magic  0.2.0
Open reimplementation of Might and Magic 6 7 8 game engine
error.h
См. документацию.
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 
24 #ifndef AVUTIL_ERROR_H
25 #define AVUTIL_ERROR_H
26 
27 #include <errno.h>
28 #include <stddef.h>
29 
37 /* error handling */
38 #if EDOM > 0
39 #define AVERROR(e) (-(e))
40 #define AVUNERROR(e) (-(e))
41 #else
42 /* Some platforms have E* and errno already negated. */
43 #define AVERROR(e) (e)
44 #define AVUNERROR(e) (e)
45 #endif
46 
47 #define FFERRTAG(a, b, c, d) (-(int)MKTAG(a, b, c, d))
48 
49 #define AVERROR_BSF_NOT_FOUND FFERRTAG(0xF8,'B','S','F')
50 #define AVERROR_BUG FFERRTAG( 'B','U','G','!')
51 #define AVERROR_BUFFER_TOO_SMALL FFERRTAG( 'B','U','F','S')
52 #define AVERROR_DECODER_NOT_FOUND FFERRTAG(0xF8,'D','E','C')
53 #define AVERROR_DEMUXER_NOT_FOUND FFERRTAG(0xF8,'D','E','M')
54 #define AVERROR_ENCODER_NOT_FOUND FFERRTAG(0xF8,'E','N','C')
55 #define AVERROR_EOF FFERRTAG( 'E','O','F',' ')
56 #define AVERROR_EXIT FFERRTAG( 'E','X','I','T')
57 #define AVERROR_EXTERNAL FFERRTAG( 'E','X','T',' ')
58 #define AVERROR_FILTER_NOT_FOUND FFERRTAG(0xF8,'F','I','L')
59 #define AVERROR_INVALIDDATA FFERRTAG( 'I','N','D','A')
60 #define AVERROR_MUXER_NOT_FOUND FFERRTAG(0xF8,'M','U','X')
61 #define AVERROR_OPTION_NOT_FOUND FFERRTAG(0xF8,'O','P','T')
62 #define AVERROR_PATCHWELCOME FFERRTAG( 'P','A','W','E')
63 #define AVERROR_PROTOCOL_NOT_FOUND FFERRTAG(0xF8,'P','R','O')
64 
65 #define AVERROR_STREAM_NOT_FOUND FFERRTAG(0xF8,'S','T','R')
66 
70 #define AVERROR_BUG2 FFERRTAG( 'B','U','G',' ')
71 #define AVERROR_UNKNOWN FFERRTAG( 'U','N','K','N')
72 #define AVERROR_EXPERIMENTAL (-0x2bb2afa8)
73 #define AVERROR_INPUT_CHANGED (-0x636e6701)
74 #define AVERROR_OUTPUT_CHANGED (-0x636e6702)
75 /* HTTP & RTSP errors */
76 #define AVERROR_HTTP_BAD_REQUEST FFERRTAG(0xF8,'4','0','0')
77 #define AVERROR_HTTP_UNAUTHORIZED FFERRTAG(0xF8,'4','0','1')
78 #define AVERROR_HTTP_FORBIDDEN FFERRTAG(0xF8,'4','0','3')
79 #define AVERROR_HTTP_NOT_FOUND FFERRTAG(0xF8,'4','0','4')
80 #define AVERROR_HTTP_OTHER_4XX FFERRTAG(0xF8,'4','X','X')
81 #define AVERROR_HTTP_SERVER_ERROR FFERRTAG(0xF8,'5','X','X')
82 
83 #define AV_ERROR_MAX_STRING_SIZE 64
84 
97 int av_strerror(int errnum, char *errbuf, size_t errbuf_size);
98 
109 static inline char *av_make_error_string(char *errbuf, size_t errbuf_size, int errnum)
110 {
111  av_strerror(errnum, errbuf, errbuf_size);
112  return errbuf;
113 }
114 
119 #define av_err2str(errnum) \
120  av_make_error_string((char[AV_ERROR_MAX_STRING_SIZE]){0}, AV_ERROR_MAX_STRING_SIZE, errnum)
121 
126 #endif /* AVUTIL_ERROR_H */
av_make_error_string
static char * av_make_error_string(char *errbuf, size_t errbuf_size, int errnum)
Definition: error.h:109
av_strerror
int av_strerror(int errnum, char *errbuf, size_t errbuf_size)