Mercurial > libavcodec.hg
comparison avcodec.h @ 8984:eb0da8917f17 libavcodec
Add AVERROR_EOF.
| author | pross |
|---|---|
| date | Thu, 19 Feb 2009 12:18:09 +0000 |
| parents | 34f2c7189710 |
| children | cdd8fa4a362a |
comparison
equal
deleted
inserted
replaced
| 8983:436e7d43db62 | 8984:eb0da8917f17 |
|---|---|
| 28 | 28 |
| 29 #include <errno.h> | 29 #include <errno.h> |
| 30 #include "libavutil/avutil.h" | 30 #include "libavutil/avutil.h" |
| 31 | 31 |
| 32 #define LIBAVCODEC_VERSION_MAJOR 52 | 32 #define LIBAVCODEC_VERSION_MAJOR 52 |
| 33 #define LIBAVCODEC_VERSION_MINOR 16 | 33 #define LIBAVCODEC_VERSION_MINOR 17 |
| 34 #define LIBAVCODEC_VERSION_MICRO 0 | 34 #define LIBAVCODEC_VERSION_MICRO 0 |
| 35 | 35 |
| 36 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ | 36 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ |
| 37 LIBAVCODEC_VERSION_MINOR, \ | 37 LIBAVCODEC_VERSION_MINOR, \ |
| 38 LIBAVCODEC_VERSION_MICRO) | 38 LIBAVCODEC_VERSION_MICRO) |
| 3162 #define AVERROR_INVALIDDATA AVERROR(EINVAL) /**< invalid data found */ | 3162 #define AVERROR_INVALIDDATA AVERROR(EINVAL) /**< invalid data found */ |
| 3163 #define AVERROR_NOMEM AVERROR(ENOMEM) /**< not enough memory */ | 3163 #define AVERROR_NOMEM AVERROR(ENOMEM) /**< not enough memory */ |
| 3164 #define AVERROR_NOFMT AVERROR(EILSEQ) /**< unknown format */ | 3164 #define AVERROR_NOFMT AVERROR(EILSEQ) /**< unknown format */ |
| 3165 #define AVERROR_NOTSUPP AVERROR(ENOSYS) /**< Operation not supported. */ | 3165 #define AVERROR_NOTSUPP AVERROR(ENOSYS) /**< Operation not supported. */ |
| 3166 #define AVERROR_NOENT AVERROR(ENOENT) /**< No such file or directory. */ | 3166 #define AVERROR_NOENT AVERROR(ENOENT) /**< No such file or directory. */ |
| 3167 #define AVERROR_EOF AVERROR(EPIPE) /**< End of file. */ | |
| 3167 #define AVERROR_PATCHWELCOME -MKTAG('P','A','W','E') /**< Not yet implemented in FFmpeg. Patches welcome. */ | 3168 #define AVERROR_PATCHWELCOME -MKTAG('P','A','W','E') /**< Not yet implemented in FFmpeg. Patches welcome. */ |
| 3168 | 3169 |
| 3169 #endif /* AVCODEC_AVCODEC_H */ | 3170 #endif /* AVCODEC_AVCODEC_H */ |
