# HG changeset patch # User pross # Date 1235045889 0 # Node ID eb0da8917f173971a8585c78c5a91c748b0b9404 # Parent 436e7d43db62bbfad5b530d66ce4f57537fe1dbf Add AVERROR_EOF. diff -r 436e7d43db62 -r eb0da8917f17 avcodec.h --- 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 */