Mercurial > libavcodec.hg
changeset 8984:eb0da8917f17 libavcodec
Add AVERROR_EOF.
author | pross |
---|---|
date | Thu, 19 Feb 2009 12:18:09 +0000 |
parents | 436e7d43db62 |
children | 028c9cf95b95 |
files | avcodec.h |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/avcodec.h Thu Feb 19 09:55:52 2009 +0000 +++ b/avcodec.h Thu Feb 19 12:18:09 2009 +0000 @@ -30,7 +30,7 @@ #include "libavutil/avutil.h" #define LIBAVCODEC_VERSION_MAJOR 52 -#define LIBAVCODEC_VERSION_MINOR 16 +#define LIBAVCODEC_VERSION_MINOR 17 #define LIBAVCODEC_VERSION_MICRO 0 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ @@ -3164,6 +3164,7 @@ #define AVERROR_NOFMT AVERROR(EILSEQ) /**< unknown format */ #define AVERROR_NOTSUPP AVERROR(ENOSYS) /**< Operation not supported. */ #define AVERROR_NOENT AVERROR(ENOENT) /**< No such file or directory. */ +#define AVERROR_EOF AVERROR(EPIPE) /**< End of file. */ #define AVERROR_PATCHWELCOME -MKTAG('P','A','W','E') /**< Not yet implemented in FFmpeg. Patches welcome. */ #endif /* AVCODEC_AVCODEC_H */