Go to the documentation of this file.
20 #define _XOPEN_SOURCE 600
34 #define ERROR_TAG(tag) AVERROR_##tag, #tag
35 #define EERROR_TAG(tag) AVERROR(tag), #tag
36 #define AVERROR_INPUT_AND_OUTPUT_CHANGED (AVERROR_INPUT_CHANGED | AVERROR_OUTPUT_CHANGED)
38 {
ERROR_TAG(BSF_NOT_FOUND),
"Bitstream filter not found" },
39 {
ERROR_TAG(BUG),
"Internal bug, should not have happened" },
40 {
ERROR_TAG(BUG2),
"Internal bug, should not have happened" },
41 {
ERROR_TAG(BUFFER_TOO_SMALL),
"Buffer too small" },
42 {
ERROR_TAG(DECODER_NOT_FOUND),
"Decoder not found" },
43 {
ERROR_TAG(DEMUXER_NOT_FOUND),
"Demuxer not found" },
44 {
ERROR_TAG(ENCODER_NOT_FOUND),
"Encoder not found" },
46 {
ERROR_TAG(EXIT),
"Immediate exit requested" },
47 {
ERROR_TAG(EXTERNAL),
"Generic error in an external library" },
48 {
ERROR_TAG(FILTER_NOT_FOUND),
"Filter not found" },
49 {
ERROR_TAG(INPUT_CHANGED),
"Input changed" },
50 {
ERROR_TAG(INVALIDDATA),
"Invalid data found when processing input" },
51 {
ERROR_TAG(MUXER_NOT_FOUND),
"Muxer not found" },
52 {
ERROR_TAG(OPTION_NOT_FOUND),
"Option not found" },
53 {
ERROR_TAG(OUTPUT_CHANGED),
"Output changed" },
54 {
ERROR_TAG(PATCHWELCOME),
"Not yet implemented in FFmpeg, patches welcome" },
55 {
ERROR_TAG(PROTOCOL_NOT_FOUND),
"Protocol not found" },
56 {
ERROR_TAG(STREAM_NOT_FOUND),
"Stream not found" },
58 {
ERROR_TAG(EXPERIMENTAL),
"Experimental feature" },
59 {
ERROR_TAG(INPUT_AND_OUTPUT_CHANGED),
"Input and output changed" },
60 {
ERROR_TAG(HTTP_BAD_REQUEST),
"Server returned 400 Bad Request" },
61 {
ERROR_TAG(HTTP_UNAUTHORIZED),
"Server returned 401 Unauthorized (authorization failed)" },
62 {
ERROR_TAG(HTTP_FORBIDDEN),
"Server returned 403 Forbidden (access denied)" },
63 {
ERROR_TAG(HTTP_NOT_FOUND),
"Server returned 404 Not Found" },
64 {
ERROR_TAG(HTTP_OTHER_4XX),
"Server returned 4XX Client Error, but not one of 40{0,1,3,4}" },
65 {
ERROR_TAG(HTTP_SERVER_ERROR),
"Server returned 5XX Server Error reply" },
67 {
EERROR_TAG(E2BIG),
"Argument list too long" },
69 {
EERROR_TAG(EAGAIN),
"Resource temporarily unavailable" },
71 {
EERROR_TAG(EBUSY),
"Device or resource busy" },
73 {
EERROR_TAG(EDEADLK),
"Resource deadlock avoided" },
74 {
EERROR_TAG(EDOM),
"Numerical argument out of domain" },
78 {
EERROR_TAG(EILSEQ),
"Illegal byte sequence" },
79 {
EERROR_TAG(EINTR),
"Interrupted system call" },
85 {
EERROR_TAG(ENAMETOOLONG),
"File name too long" },
86 {
EERROR_TAG(ENFILE),
"Too many open files in system" },
88 {
EERROR_TAG(ENOENT),
"No such file or directory" },
91 {
EERROR_TAG(ENOMEM),
"Cannot allocate memory" },
92 {
EERROR_TAG(ENOSPC),
"No space left on device" },
93 {
EERROR_TAG(ENOSYS),
"Function not implemented" },
95 {
EERROR_TAG(ENOTEMPTY),
"Directory not empty" },
96 {
EERROR_TAG(ENOTTY),
"Inappropriate I/O control operation" },
97 {
EERROR_TAG(ENXIO),
"No such device or address" },
98 {
EERROR_TAG(EPERM),
"Operation not permitted" },
101 {
EERROR_TAG(EROFS),
"Read-only file system" },
128 snprintf(errbuf, errbuf_size,
"Error number %d occurred", errnum);
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
static const struct error_entry error_entries[]
int av_strerror(int errnum, char *errbuf, size_t errbuf_size)
Put a description of the AVERROR code errnum in errbuf.
#define FF_ARRAY_ELEMS(a)
#define i(width, name, range_min, range_max)
size_t av_strlcpy(char *dst, const char *src, size_t size)
Copy the string src to dst, but no more than size - 1 bytes, and null-terminate dst.