annotate error.h @ 881:ff823129a787 libavutil

Mark AVERROR_ENOMEM to be deleted at the next major bump. AVERROR(ENOMEM) must be used instead, and there are no occurrences of AVERROR_ENOMEM in the FFmpeg basecode so it can be safely dropped.
author stefano
date Sat, 13 Mar 2010 19:19:46 +0000
parents 30f20f8cf016
children d150b3ee9435
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 /**
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
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
27 /* error handling */
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
28 #if EINVAL > 0
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
29 #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
30 #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
31 #else
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
32 /* Some platforms have E* and errno already negated. */
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
33 #define AVERROR(e) (e)
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
34 #define AVUNERROR(e) (e)
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
35 #endif
879
042e0e6f0735 Make iff.c:decode_init return the value returned by
stefano
parents: 878
diff changeset
36
042e0e6f0735 Make iff.c:decode_init return the value returned by
stefano
parents: 878
diff changeset
37 #if LIBAVUTIL_VERSION_MAJOR < 51
877
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
38 #define AVERROR_UNKNOWN AVERROR(EINVAL) /**< unknown error */
880
30f20f8cf016 Replace all the occurrences of AVERROR_EIO with AVERROR(EIO), and mark
stefano
parents: 879
diff changeset
39 #define AVERROR_IO AVERROR(EIO) /**< I/O error */
881
ff823129a787 Mark AVERROR_ENOMEM to be deleted at the next major bump.
stefano
parents: 880
diff changeset
40 #define AVERROR_NOMEM AVERROR(ENOMEM) /**< not enough memory */
879
042e0e6f0735 Make iff.c:decode_init return the value returned by
stefano
parents: 878
diff changeset
41 #endif
042e0e6f0735 Make iff.c:decode_init return the value returned by
stefano
parents: 878
diff changeset
42
877
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
43 #define AVERROR_NUMEXPECTED AVERROR(EDOM) /**< Number syntax expected in filename. */
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
44 #define AVERROR_INVALIDDATA AVERROR(EINVAL) /**< invalid data found */
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
45 #define AVERROR_NOFMT AVERROR(EILSEQ) /**< unknown format */
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
46 #define AVERROR_NOTSUPP AVERROR(ENOSYS) /**< Operation not supported. */
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
47 #define AVERROR_NOENT AVERROR(ENOENT) /**< No such file or directory. */
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
48 #define AVERROR_EOF AVERROR(EPIPE) /**< End of file. */
878
1380f7caffd6 Add missing parentheses around the AVERROR_PATCHWELCOME macro
stefano
parents: 877
diff changeset
49 #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
50
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
51 #endif /* AVUTIL_ERROR_H */