History | View | Annotate | Download (3.52 KB)
Add AVERROR_*_NOT_FOUND codes.
Originally committed as revision 26056 to svn://svn.ffmpeg.org/ffmpeg/trunk
Improve av_strerror() documentation
Originally committed as revision 23910 to svn://svn.ffmpeg.org/ffmpeg/trunk
Fix grammar errors in documentation
Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make av_strerror() return -1 even in the case when av_strerror_r() isnot defined.
This allows applications to check if av_strerror() cannot provide ameaningful representation for the provided error code, without havingto actually check the filled string....
Make av_strerror() print an error message mentioning the error codenumber if strerror_r() did not succeed for whatever reason.
This avoids the need for the application to fill the string in casestrerror_r() fails, for example because the error code is not known....
Drop AVERROR_NOTSUPP at the next major bump, use AVERRORinstead which is semantically equivalent.
See the thread:Subject: [FFmpeg-devel] [RFC] The meaning of AVERROR_NOTSUPPDate: Sat, 27 Mar 2010 00:51:13 +0100
Originally committed as revision 22981 to svn://svn.ffmpeg.org/ffmpeg/trunk
Remove explicit filename from Doxygen @file commands.
Passing an explicit filename to this command is only necessary if thedocumentation in the @file block refers to a file different from theone the block resides in.
Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
Implement av_strerror().
Originally committed as revision 22684 to svn://svn.ffmpeg.org/ffmpeg/trunk
Prefer '///< ...' doxygen inline syntax over '/**< ... */'.
Originally committed as revision 22683 to svn://svn.ffmpeg.org/ffmpeg/trunk
Use consistent punctuation rules for the error message descriptions.
Originally committed as revision 22682 to svn://svn.ffmpeg.org/ffmpeg/trunk
Drop AVERROR_NOFMT at the next libavutil major bump.
Originally committed as revision 22626 to svn://svn.ffmpeg.org/ffmpeg/trunk
Change the definition of AVERROR_INVALIDDATA at the next libavutilmajor bump, using an FFmpeg specific error code rather than EINVAL,which has a quite different semantics.
Originally committed as revision 22601 to svn://svn.ffmpeg.org/ffmpeg/trunk
Extend description for AVERROR_INVALIDDATA.
Originally committed as revision 22600 to svn://svn.ffmpeg.org/ffmpeg/trunk
error.h: test EDOM instead of EINVAL
C99 doesn't require EINVAL, only EDOM, EILSEQ, and ERANGE.
Originally committed as revision 22530 to svn://svn.ffmpeg.org/ffmpeg/trunk
Add missing includes to libavutil/error.h
Originally committed as revision 22529 to svn://svn.ffmpeg.org/ffmpeg/trunk
Change the definition of AVERROR_NUMEXPECTED at the next libavutilmajor bump, using an FFmpeg specific error code rather than EDOM,which has a quite different semantics.
Originally committed as revision 22528 to svn://svn.ffmpeg.org/ffmpeg/trunk
Mark AVERROR_ENOENT for deletion at the next libavutil major bump.
The symbol is currently unused, AVERROR must be used instead.
Originally committed as revision 22519 to svn://svn.ffmpeg.org/ffmpeg/trunk
Lexically sort the error code definitions.
Originally committed as revision 22518 to svn://svn.ffmpeg.org/ffmpeg/trunk
Mark AVERROR_ENOMEM to be deleted at the next major bump.
AVERROR must be used instead, and there are no occurrences ofAVERROR_ENOMEM in the FFmpeg basecode so it can be safely dropped.
Originally committed as revision 22514 to svn://svn.ffmpeg.org/ffmpeg/trunk
Replace all the occurrences of AVERROR_EIO with AVERROR, and markAVERROR_EIO for deletion at the next major bump.
Originally committed as revision 22513 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make iff.c:decode_init return the value returned byavctx->get_buffer() in case of error, rather than AVERROR_UNKNOWNwhich is deprecated, and mark AVERROR_UNKNOWN for deletion at the nextmajor bump.
Originally committed as revision 22512 to svn://svn.ffmpeg.org/ffmpeg/trunk
Add missing parentheses around the AVERROR_PATCHWELCOME macrodefinition.
Originally committed as revision 22502 to svn://svn.ffmpeg.org/ffmpeg/trunk
Move error code definitions from libavcodec/avcodec.h tolibavutil/error.h.
Error code definitions and handling code belong to libavutil, wherethey can be shared by all the libav* libraries.
See the thread:Subject: [FFmpeg-devel] [PATCH] Move error codes definitions from lavc to lavu...