# HG changeset patch # User stefano # Date 1272407168 0 # Node ID 71ebc8b18666606bb795289b4a02686e087c967d # Parent 6dcab870b03ba767dde15f158c1772065908a8b0 Drop AVERROR_NOTSUPP at the next major bump, use AVERROR(ENOSYS) instead which is semantically equivalent. See the thread: Subject: [FFmpeg-devel] [RFC] The meaning of AVERROR_NOTSUPP Date: Sat, 27 Mar 2010 00:51:13 +0100 diff -r 6dcab870b03b -r 71ebc8b18666 error.c --- a/error.c Mon Apr 26 21:01:38 2010 +0000 +++ b/error.c Tue Apr 27 22:26:08 2010 +0000 @@ -27,7 +27,6 @@ switch (errnum) { case AVERROR_EOF: errstr = "End of file"; break; case AVERROR_INVALIDDATA: errstr = "Invalid data found when processing input"; break; - case AVERROR_NOTSUPP: errstr = "Operation not supported"; break; case AVERROR_NUMEXPECTED: errstr = "Number syntax expected in filename"; break; case AVERROR_PATCHWELCOME: errstr = "Not yet implemented in FFmpeg, patches welcome"; break; } diff -r 6dcab870b03b -r 71ebc8b18666 error.h --- a/error.h Mon Apr 26 21:01:38 2010 +0000 +++ b/error.h Tue Apr 27 22:26:08 2010 +0000 @@ -43,12 +43,12 @@ #define AVERROR_NOENT AVERROR(ENOENT) ///< No such file or directory #define AVERROR_NOFMT AVERROR(EILSEQ) ///< Unknown format #define AVERROR_NOMEM AVERROR(ENOMEM) ///< Not enough memory +#define AVERROR_NOTSUPP AVERROR(ENOSYS) ///< Operation not supported #define AVERROR_NUMEXPECTED AVERROR(EDOM) ///< Number syntax expected in filename #define AVERROR_UNKNOWN AVERROR(EINVAL) ///< Unknown error #endif #define AVERROR_EOF AVERROR(EPIPE) ///< End of file -#define AVERROR_NOTSUPP AVERROR(ENOSYS) ///< Operation not supported #define AVERROR_PATCHWELCOME (-MKTAG('P','A','W','E')) ///< Not yet implemented in FFmpeg, patches welcome