Main Page
Related Pages
Modules
Data Structures
Files
Examples
File List
Globals
libavutil
error.h
Go to the documentation of this file.
1
/*
2
* This file is part of Libav.
3
*
4
* Libav is free software; you can redistribute it and/or
5
* modify it under the terms of the GNU Lesser General Public
6
* License as published by the Free Software Foundation; either
7
* version 2.1 of the License, or (at your option) any later version.
8
*
9
* Libav is distributed in the hope that it will be useful,
10
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12
* Lesser General Public License for more details.
13
*
14
* You should have received a copy of the GNU Lesser General Public
15
* License along with Libav; if not, write to the Free Software
16
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
*/
18
24
#ifndef AVUTIL_ERROR_H
25
#define AVUTIL_ERROR_H
26
27
#include <errno.h>
28
#include <stddef.h>
29
#include "
avutil.h
"
30
38
/* error handling */
39
#if EDOM > 0
40
#define AVERROR(e) (-(e))
41
#define AVUNERROR(e) (-(e))
42
#else
43
/* Some platforms have E* and errno already negated. */
44
#define AVERROR(e) (e)
45
#define AVUNERROR(e) (e)
46
#endif
47
48
#define AVERROR_BSF_NOT_FOUND (-0x39acbd08)
49
#define AVERROR_DECODER_NOT_FOUND (-0x3cbabb08)
50
#define AVERROR_DEMUXER_NOT_FOUND (-0x32babb08)
51
#define AVERROR_ENCODER_NOT_FOUND (-0x3cb1ba08)
52
#define AVERROR_EOF (-0x5fb9b0bb)
53
#define AVERROR_EXIT (-0x2bb6a7bb)
54
#define AVERROR_FILTER_NOT_FOUND (-0x33b6b908)
55
#define AVERROR_INVALIDDATA (-0x3ebbb1b7)
56
#define AVERROR_MUXER_NOT_FOUND (-0x27aab208)
57
#define AVERROR_OPTION_NOT_FOUND (-0x2bafb008)
58
#define AVERROR_PATCHWELCOME (-0x3aa8beb0)
59
#define AVERROR_PROTOCOL_NOT_FOUND (-0x30adaf08)
60
#define AVERROR_STREAM_NOT_FOUND (-0x2dabac08)
61
#define AVERROR_BUG (-0x5fb8aabe)
62
#define AVERROR_UNKNOWN (-0x31b4b1ab)
63
#define AVERROR_EXPERIMENTAL (-0x2bb2afa8)
64
65
77
int
av_strerror
(
int
errnum,
char
*errbuf,
size_t
errbuf_size);
78
83
#endif
/* AVUTIL_ERROR_H */
avutil.h
external API header
av_strerror
int av_strerror(int errnum, char *errbuf, size_t errbuf_size)
Put a description of the AVERROR code errnum in errbuf.
Definition:
error.c:23