Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-12-19lavu: add AVERROR_BUG error valueLuca Barbato
It should be used to mark codepath that can be reached only through programming error.
2011-04-21error: sort, pack, and align error code and string definitionsStefano Sabatini
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-04-21error: remove AVERROR_NUMEXPECTEDStefano Sabatini
AVERROR_NUMEXPECTED is used only in the image muxer and demuxer, and has a too much specific meaning, which is better explained through a log message. Thus it can be replaced by AVERROR(EINVAL). This breaks API. Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-04-21error: add error code AVERROR_OPTION_NOT_FOUND, and use it in opt.cStefano Sabatini
The new error code is better than AVERROR(ENOENT), which has a completely different semantics ("No such file or directory"). Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-04-17Replace more FFmpeg references by Libav.Diego Biurrun
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-03-15Add AVERROR_EXIT.Nicolas George
This is different from AVERROR(EINTR) because calls that fail with EINTR should usually be restarted. Signed-off-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2010-12-19Add AVERROR_*_NOT_FOUND codes.Nicolas George
Originally committed as revision 26056 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-06Make av_strerror() return -1 even in the case when av_strerror_r() isStefano Sabatini
not defined. This allows applications to check if av_strerror() cannot provide a meaningful representation for the provided error code, without having to actually check the filled string. Originally committed as revision 23031 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-04Make av_strerror() print an error message mentioning the error codeStefano Sabatini
number if strerror_r() did not succeed for whatever reason. This avoids the need for the application to fill the string in case strerror_r() fails, for example because the error code is not known. Originally committed as revision 23015 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-28Drop AVERROR_NOTSUPP at the next major bump, use AVERROR(ENOSYS)Stefano Sabatini
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
2010-03-26Implement av_strerror().Stefano Sabatini
Originally committed as revision 22684 to svn://svn.ffmpeg.org/ffmpeg/trunk