annotate error.h @ 890:e8a40257c674 libavutil

Use consistent punctuation rules for the error message descriptions.
author stefano
date Thu, 25 Mar 2010 22:46:28 +0000
parents 83b7527b1b86
children 5ab17eb3a54c
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
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
877
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
888
4d4d42771661 Change the definition of AVERROR_INVALIDDATA at the next libavutil
stefano
parents: 887
diff changeset
41 #define AVERROR_INVALIDDATA AVERROR(EINVAL) /**< Invalid data found when processing input */
880
30f20f8cf016 Replace all the occurrences of AVERROR_EIO with AVERROR(EIO), and mark
stefano
parents: 879
diff changeset
42 #define AVERROR_IO AVERROR(EIO) /**< I/O error */
890
e8a40257c674 Use consistent punctuation rules for the error message descriptions.
stefano
parents: 889
diff changeset
43 #define AVERROR_NOENT AVERROR(ENOENT) /**< No such file or directory */
e8a40257c674 Use consistent punctuation rules for the error message descriptions.
stefano
parents: 889
diff changeset
44 #define AVERROR_NOFMT AVERROR(EILSEQ) /**< Unknown format */
e8a40257c674 Use consistent punctuation rules for the error message descriptions.
stefano
parents: 889
diff changeset
45 #define AVERROR_NOMEM AVERROR(ENOMEM) /**< Not enough memory */
e8a40257c674 Use consistent punctuation rules for the error message descriptions.
stefano
parents: 889
diff changeset
46 #define AVERROR_NUMEXPECTED AVERROR(EDOM) /**< Number syntax expected in filename */
e8a40257c674 Use consistent punctuation rules for the error message descriptions.
stefano
parents: 889
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
890
e8a40257c674 Use consistent punctuation rules for the error message descriptions.
stefano
parents: 889
diff changeset
50 #define AVERROR_EOF AVERROR(EPIPE) /**< End of file */
e8a40257c674 Use consistent punctuation rules for the error message descriptions.
stefano
parents: 889
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
890
e8a40257c674 Use consistent punctuation rules for the error message descriptions.
stefano
parents: 889
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
888
4d4d42771661 Change the definition of AVERROR_INVALIDDATA at the next libavutil
stefano
parents: 887
diff changeset
56 #define AVERROR_INVALIDDATA (-MKTAG('I','N','D','A')) /**< Invalid data found when processing input */
890
e8a40257c674 Use consistent punctuation rules for the error message descriptions.
stefano
parents: 889
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
877
51fd7ea406a1 Move error code definitions from libavcodec/avcodec.h to
stefano
parents:
diff changeset
60 #endif /* AVUTIL_ERROR_H */