00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00024 #ifndef AVUTIL_ERROR_H
00025 #define AVUTIL_ERROR_H
00026
00027 #include <errno.h>
00028 #include "avutil.h"
00029
00037
00038 #if EDOM > 0
00039 #define AVERROR(e) (-(e))
00040 #define AVUNERROR(e) (-(e))
00041 #else
00042
00043 #define AVERROR(e) (e)
00044 #define AVUNERROR(e) (e)
00045 #endif
00046
00047 #define AVERROR_BSF_NOT_FOUND (-MKTAG(0xF8,'B','S','F'))
00048 #define AVERROR_BUG (-MKTAG( 'B','U','G','!'))
00049 #define AVERROR_DECODER_NOT_FOUND (-MKTAG(0xF8,'D','E','C'))
00050 #define AVERROR_DEMUXER_NOT_FOUND (-MKTAG(0xF8,'D','E','M'))
00051 #define AVERROR_ENCODER_NOT_FOUND (-MKTAG(0xF8,'E','N','C'))
00052 #define AVERROR_EOF (-MKTAG( 'E','O','F',' '))
00053 #define AVERROR_EXIT (-MKTAG( 'E','X','I','T'))
00054 #define AVERROR_FILTER_NOT_FOUND (-MKTAG(0xF8,'F','I','L'))
00055 #define AVERROR_INVALIDDATA (-MKTAG( 'I','N','D','A'))
00056 #define AVERROR_MUXER_NOT_FOUND (-MKTAG(0xF8,'M','U','X'))
00057 #define AVERROR_OPTION_NOT_FOUND (-MKTAG(0xF8,'O','P','T'))
00058 #define AVERROR_PATCHWELCOME (-MKTAG( 'P','A','W','E'))
00059 #define AVERROR_PROTOCOL_NOT_FOUND (-MKTAG(0xF8,'P','R','O'))
00060 #define AVERROR_STREAM_NOT_FOUND (-MKTAG(0xF8,'S','T','R'))
00061
00062
00066 #define AVERROR_BUG2 (-MKTAG( 'B','U','G',' '))
00067 #define AVERROR_UNKNOWN (-MKTAG( 'U','N','K','N'))
00068
00069
00081 int av_strerror(int errnum, char *errbuf, size_t errbuf_size);
00082
00087 #endif