mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 07:40:00 +08:00
Replace all the occurrences of AVERROR_EIO with AVERROR(EIO), and mark
AVERROR_EIO for deletion at the next major bump. Originally committed as revision 22513 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -36,9 +36,9 @@
|
||||
|
||||
#if LIBAVUTIL_VERSION_MAJOR < 51
|
||||
#define AVERROR_UNKNOWN AVERROR(EINVAL) /**< unknown error */
|
||||
#define AVERROR_IO AVERROR(EIO) /**< I/O error */
|
||||
#endif
|
||||
|
||||
#define AVERROR_IO AVERROR(EIO) /**< I/O error */
|
||||
#define AVERROR_NUMEXPECTED AVERROR(EDOM) /**< Number syntax expected in filename. */
|
||||
#define AVERROR_INVALIDDATA AVERROR(EINVAL) /**< invalid data found */
|
||||
#define AVERROR_NOMEM AVERROR(ENOMEM) /**< not enough memory */
|
||||
|
Reference in New Issue
Block a user