diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-04-15 22:30:26 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-04-17 19:31:49 +0200 |
commit | 6001dad6e2eb654fba9bf3d6bda6a3734253cbc6 (patch) | |
tree | 3ca9b6cf56fb99279c423ba4f976eb9923f72b26 /libavutil | |
parent | 4c64c8e95a02b1d69aabb400fa73cba7ef8f41f7 (diff) | |
download | ffmpeg-6001dad6e2eb654fba9bf3d6bda6a3734253cbc6.tar.gz |
Replace more FFmpeg references by Libav.
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/error.c | 2 | ||||
-rw-r--r-- | libavutil/error.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/error.c b/libavutil/error.c index 23e7e13670..978e5431e9 100644 --- a/libavutil/error.c +++ b/libavutil/error.c @@ -28,7 +28,7 @@ int av_strerror(int errnum, char *errbuf, size_t errbuf_size) case AVERROR_EOF: errstr = "End of file"; break; case AVERROR_INVALIDDATA: errstr = "Invalid data found when processing input"; break; case AVERROR_NUMEXPECTED: errstr = "Number syntax expected in filename"; break; - case AVERROR_PATCHWELCOME: errstr = "Not yet implemented in FFmpeg, patches welcome"; break; + case AVERROR_PATCHWELCOME: errstr = "Not yet implemented in Libav, patches welcome"; break; case AVERROR_DEMUXER_NOT_FOUND: errstr = "Demuxer not found"; break; case AVERROR_MUXER_NOT_FOUND: errstr = "Muxer not found"; break; case AVERROR_DECODER_NOT_FOUND: errstr = "Decoder not found"; break; diff --git a/libavutil/error.h b/libavutil/error.h index 087c08fc5e..8c83ecde77 100644 --- a/libavutil/error.h +++ b/libavutil/error.h @@ -50,7 +50,7 @@ #define AVERROR_EOF AVERROR(EPIPE) ///< End of file -#define AVERROR_PATCHWELCOME (-MKTAG('P','A','W','E')) ///< Not yet implemented in FFmpeg, patches welcome +#define AVERROR_PATCHWELCOME (-MKTAG('P','A','W','E')) ///< Not yet implemented in Libav, patches welcome #if LIBAVUTIL_VERSION_MAJOR > 50 #define AVERROR_INVALIDDATA (-MKTAG('I','N','D','A')) ///< Invalid data found when processing input |