Mercurial > libavutil.hg
diff error.c @ 911:71ebc8b18666 libavutil
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
| author | stefano |
|---|---|
| date | Tue, 27 Apr 2010 22:26:08 +0000 |
| parents | 3e77728d53e1 |
| children | a1a27468a9c5 |
line wrap: on
line diff
--- 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; }
