annotate error.h @ 899:0795a743bda1 libavutil

Remove explicit filename from Doxygen @file commands. Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in.
author diego
date Tue, 20 Apr 2010 14:45:34 +0000
parents 3e77728d53e1
children 71ebc8b18666
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
877
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
1 /*
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
2 * This file is part of FFmpeg.
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
3 *
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
4 * FFmpeg is free software; you can redistribute it and/or
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
5 * modify it under the terms of the GNU Lesser General Public
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
6 * License as published by the Free Software Foundation; either
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
7 * version 2.1 of the License, or (at your option) any later version.
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
8 *
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
9 * FFmpeg is distributed in the hope that it will be useful,
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
12 * Lesser General Public License for more details.
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
13 *
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
14 * You should have received a copy of the GNU Lesser General Public
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
15 * License along with FFmpeg; if not, write to the Free Software
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
17 */
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
18
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
19 /**
899
0795a743bda1 Remove explicit filename from Doxygen @file commands.
diego
parents: 892
diff changeset
20 * @file
877
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
21 * error code definitions
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
22 */
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
23
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
24 #ifndef AVUTIL_ERROR_H
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
25 #define AVUTIL_ERROR_H
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
26
885
311037a6cb91 Add missing includes to libavutil/error.h
mru
parents: 884
diff changeset
27 #include <errno.h>
311037a6cb91 Add missing includes to libavutil/error.h
mru
parents: 884
diff changeset
28 #include "avutil.h"
311037a6cb91 Add missing includes to libavutil/error.h
mru
parents: 884
diff changeset
29
877
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
30 /* error handling */
886
d4062b438548 error.h: test EDOM instead of EINVAL
mru
parents: 885
diff changeset
31 #if EDOM > 0
891
5ab17eb3a54c Prefer '///< ...' doxygen inline syntax over '/**< ... */'.
stefano
parents: 890
diff changeset
32 #define AVERROR(e) (-(e)) ///< Returns a negative error code from a POSIX error code, to return from library functions.
5ab17eb3a54c Prefer '///< ...' doxygen inline syntax over '/**< ... */'.
stefano
parents: 890
diff changeset
33 #define AVUNERROR(e) (-(e)) ///< Returns a POSIX error code from a library function error return value.
877
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
34 #else
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
35 /* Some platforms have E* and errno already negated. */
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
36 #define AVERROR(e) (e)
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
37 #define AVUNERROR(e) (e)
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
38 #endif
879
042e0e6f0735 Make iff.c:decode_init return the value returned by
stefano
parents: 878
diff changeset
39
042e0e6f0735 Make iff.c:decode_init return the value returned by
stefano
parents: 878
diff changeset
40 #if LIBAVUTIL_VERSION_MAJOR < 51
891
5ab17eb3a54c Prefer '///< ...' doxygen inline syntax over '/**< ... */'.
stefano
parents: 890
diff changeset
41 #define AVERROR_INVALIDDATA AVERROR(EINVAL) ///< Invalid data found when processing input
5ab17eb3a54c Prefer '///< ...' doxygen inline syntax over '/**< ... */'.
stefano
parents: 890
diff changeset
42 #define AVERROR_IO AVERROR(EIO) ///< I/O error
5ab17eb3a54c Prefer '///< ...' doxygen inline syntax over '/**< ... */'.
stefano
parents: 890
diff changeset
43 #define AVERROR_NOENT AVERROR(ENOENT) ///< No such file or directory
5ab17eb3a54c Prefer '///< ...' doxygen inline syntax over '/**< ... */'.
stefano
parents: 890
diff changeset
44 #define AVERROR_NOFMT AVERROR(EILSEQ) ///< Unknown format
5ab17eb3a54c Prefer '///< ...' doxygen inline syntax over '/**< ... */'.
stefano
parents: 890
diff changeset
45 #define AVERROR_NOMEM AVERROR(ENOMEM) ///< Not enough memory
5ab17eb3a54c Prefer '///< ...' doxygen inline syntax over '/**< ... */'.
stefano
parents: 890
diff changeset
46 #define AVERROR_NUMEXPECTED AVERROR(EDOM) ///< Number syntax expected in filename
5ab17eb3a54c Prefer '///< ...' doxygen inline syntax over '/**< ... */'.
stefano
parents: 890
diff changeset
47 #define AVERROR_UNKNOWN AVERROR(EINVAL) ///< Unknown error
879
042e0e6f0735 Make iff.c:decode_init return the value returned by
stefano
parents: 878
diff changeset
48 #endif
042e0e6f0735 Make iff.c:decode_init return the value returned by
stefano
parents: 878
diff changeset
49
891
5ab17eb3a54c Prefer '///< ...' doxygen inline syntax over '/**< ... */'.
stefano
parents: 890
diff changeset
50 #define AVERROR_EOF AVERROR(EPIPE) ///< End of file
5ab17eb3a54c Prefer '///< ...' doxygen inline syntax over '/**< ... */'.
stefano
parents: 890
diff changeset
51 #define AVERROR_NOTSUPP AVERROR(ENOSYS) ///< Operation not supported
882
d150b3ee9435 Lexically sort the error code definitions.
stefano
parents: 881
diff changeset
52
891
5ab17eb3a54c Prefer '///< ...' doxygen inline syntax over '/**< ... */'.
stefano
parents: 890
diff changeset
53 #define AVERROR_PATCHWELCOME (-MKTAG('P','A','W','E')) ///< Not yet implemented in FFmpeg, patches welcome
877
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
54
884
bac1abbd0702 Change the definition of AVERROR_NUMEXPECTED at the next libavutil
stefano
parents: 883
diff changeset
55 #if LIBAVUTIL_VERSION_MAJOR > 50
891
5ab17eb3a54c Prefer '///< ...' doxygen inline syntax over '/**< ... */'.
stefano
parents: 890
diff changeset
56 #define AVERROR_INVALIDDATA (-MKTAG('I','N','D','A')) ///< Invalid data found when processing input
5ab17eb3a54c Prefer '///< ...' doxygen inline syntax over '/**< ... */'.
stefano
parents: 890
diff changeset
57 #define AVERROR_NUMEXPECTED (-MKTAG('N','U','E','X')) ///< Number syntax expected in filename
884
bac1abbd0702 Change the definition of AVERROR_NUMEXPECTED at the next libavutil
stefano
parents: 883
diff changeset
58 #endif
bac1abbd0702 Change the definition of AVERROR_NUMEXPECTED at the next libavutil
stefano
parents: 883
diff changeset
59
892
3e77728d53e1 Implement av_strerror().
stefano
parents: 891
diff changeset
60 /**
3e77728d53e1 Implement av_strerror().
stefano
parents: 891
diff changeset
61 * Puts a description of the AVERROR code errnum in errbuf.
3e77728d53e1 Implement av_strerror().
stefano
parents: 891
diff changeset
62 * In case of failure the global variable errno is set to indicate the
3e77728d53e1 Implement av_strerror().
stefano
parents: 891
diff changeset
63 * error.
3e77728d53e1 Implement av_strerror().
stefano
parents: 891
diff changeset
64 *
3e77728d53e1 Implement av_strerror().
stefano
parents: 891
diff changeset
65 * @param errbuf_size the size in bytes of errbuf
3e77728d53e1 Implement av_strerror().
stefano
parents: 891
diff changeset
66 * @return 0 on success, a negative value otherwise
3e77728d53e1 Implement av_strerror().
stefano
parents: 891
diff changeset
67 */
3e77728d53e1 Implement av_strerror().
stefano
parents: 891
diff changeset
68 int av_strerror(int errnum, char *errbuf, size_t errbuf_size);
3e77728d53e1 Implement av_strerror().
stefano
parents: 891
diff changeset
69
877
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
70 #endif /* AVUTIL_ERROR_H */