From cf103fabbe33683d6ca138f7270351a4fa9c6466 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Tue, 27 Apr 2010 22:26:08 +0000 Subject: 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 Originally committed as revision 22981 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/error.c | 1 - 1 file changed, 1 deletion(-) (limited to 'libavutil/error.c') diff --git a/libavutil/error.c b/libavutil/error.c index 88d9ad6e8b..a1a0b87a9e 100644 --- a/libavutil/error.c +++ b/libavutil/error.c @@ -27,7 +27,6 @@ int av_strerror(int errnum, char *errbuf, size_t errbuf_size) 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; } -- cgit v1.2.3