comparison error.h @ 889:83b7527b1b86 libavutil

Drop AVERROR_NOFMT at the next libavutil major bump.
author stefano
date Sun, 21 Mar 2010 16:34:06 +0000
parents 4d4d42771661
children e8a40257c674
comparison
equal deleted inserted replaced
888:4d4d42771661 889:83b7527b1b86
39 39
40 #if LIBAVUTIL_VERSION_MAJOR < 51 40 #if LIBAVUTIL_VERSION_MAJOR < 51
41 #define AVERROR_INVALIDDATA AVERROR(EINVAL) /**< Invalid data found when processing input */ 41 #define AVERROR_INVALIDDATA AVERROR(EINVAL) /**< Invalid data found when processing input */
42 #define AVERROR_IO AVERROR(EIO) /**< I/O error */ 42 #define AVERROR_IO AVERROR(EIO) /**< I/O error */
43 #define AVERROR_NOENT AVERROR(ENOENT) /**< No such file or directory. */ 43 #define AVERROR_NOENT AVERROR(ENOENT) /**< No such file or directory. */
44 #define AVERROR_NOFMT AVERROR(EILSEQ) /**< unknown format */
44 #define AVERROR_NOMEM AVERROR(ENOMEM) /**< not enough memory */ 45 #define AVERROR_NOMEM AVERROR(ENOMEM) /**< not enough memory */
45 #define AVERROR_NUMEXPECTED AVERROR(EDOM) /**< Number syntax expected in filename. */ 46 #define AVERROR_NUMEXPECTED AVERROR(EDOM) /**< Number syntax expected in filename. */
46 #define AVERROR_UNKNOWN AVERROR(EINVAL) /**< unknown error */ 47 #define AVERROR_UNKNOWN AVERROR(EINVAL) /**< unknown error */
47 #endif 48 #endif
48 49
49 #define AVERROR_EOF AVERROR(EPIPE) /**< End of file. */ 50 #define AVERROR_EOF AVERROR(EPIPE) /**< End of file. */
50 #define AVERROR_NOFMT AVERROR(EILSEQ) /**< unknown format */
51 #define AVERROR_NOTSUPP AVERROR(ENOSYS) /**< Operation not supported. */ 51 #define AVERROR_NOTSUPP AVERROR(ENOSYS) /**< Operation not supported. */
52 52
53 #define AVERROR_PATCHWELCOME (-MKTAG('P','A','W','E')) /**< Not yet implemented in FFmpeg. Patches welcome. */ 53 #define AVERROR_PATCHWELCOME (-MKTAG('P','A','W','E')) /**< Not yet implemented in FFmpeg. Patches welcome. */
54 54
55 #if LIBAVUTIL_VERSION_MAJOR > 50 55 #if LIBAVUTIL_VERSION_MAJOR > 50