Mercurial > libavutil.hg
annotate error.h @ 885:311037a6cb91 libavutil
Add missing includes to libavutil/error.h
author | mru |
---|---|
date | Sun, 14 Mar 2010 22:25:31 +0000 |
parents | bac1abbd0702 |
children | d4062b438548 |
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 /** |
51fd7ea406a1
Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff
changeset
|
20 * @file libavutil/error.h |
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 | 27 #include <errno.h> |
28 #include "avutil.h" | |
29 | |
877
51fd7ea406a1
Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff
changeset
|
30 /* error handling */ |
51fd7ea406a1
Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff
changeset
|
31 #if EINVAL > 0 |
51fd7ea406a1
Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff
changeset
|
32 #define AVERROR(e) (-(e)) /**< Returns a negative error code from a POSIX error code, to return from library functions. */ |
51fd7ea406a1
Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff
changeset
|
33 #define AVUNERROR(e) (-(e)) /**< Returns a POSIX error code from a library function error return value. */ |
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 |
880
30f20f8cf016
Replace all the occurrences of AVERROR_EIO with AVERROR(EIO), and mark
stefano
parents:
879
diff
changeset
|
41 #define AVERROR_IO AVERROR(EIO) /**< I/O error */ |
883
e442be7463aa
Mark AVERROR_ENOENT for deletion at the next libavutil major bump.
stefano
parents:
882
diff
changeset
|
42 #define AVERROR_NOENT AVERROR(ENOENT) /**< No such file or directory. */ |
881
ff823129a787
Mark AVERROR_ENOMEM to be deleted at the next major bump.
stefano
parents:
880
diff
changeset
|
43 #define AVERROR_NOMEM AVERROR(ENOMEM) /**< not enough memory */ |
884
bac1abbd0702
Change the definition of AVERROR_NUMEXPECTED at the next libavutil
stefano
parents:
883
diff
changeset
|
44 #define AVERROR_NUMEXPECTED AVERROR(EDOM) /**< Number syntax expected in filename. */ |
882 | 45 #define AVERROR_UNKNOWN AVERROR(EINVAL) /**< unknown error */ |
879
042e0e6f0735
Make iff.c:decode_init return the value returned by
stefano
parents:
878
diff
changeset
|
46 #endif |
042e0e6f0735
Make iff.c:decode_init return the value returned by
stefano
parents:
878
diff
changeset
|
47 |
882 | 48 #define AVERROR_EOF AVERROR(EPIPE) /**< End of file. */ |
877
51fd7ea406a1
Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff
changeset
|
49 #define AVERROR_INVALIDDATA AVERROR(EINVAL) /**< invalid data found */ |
51fd7ea406a1
Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff
changeset
|
50 #define AVERROR_NOFMT AVERROR(EILSEQ) /**< unknown format */ |
51fd7ea406a1
Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff
changeset
|
51 #define AVERROR_NOTSUPP AVERROR(ENOSYS) /**< Operation not supported. */ |
882 | 52 |
878
1380f7caffd6
Add missing parentheses around the AVERROR_PATCHWELCOME macro
stefano
parents:
877
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 |
bac1abbd0702
Change the definition of AVERROR_NUMEXPECTED at the next libavutil
stefano
parents:
883
diff
changeset
|
56 #define AVERROR_NUMEXPECTED (-MKTAG('N','U','E','X')) /**< Number syntax expected in filename. */ |
bac1abbd0702
Change the definition of AVERROR_NUMEXPECTED at the next libavutil
stefano
parents:
883
diff
changeset
|
57 #endif |
bac1abbd0702
Change the definition of AVERROR_NUMEXPECTED at the next libavutil
stefano
parents:
883
diff
changeset
|
58 |
877
51fd7ea406a1
Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff
changeset
|
59 #endif /* AVUTIL_ERROR_H */ |