diff options
author | Nathan Caldwell <saintdev@gmail.com> | 2012-10-18 22:59:04 -0600 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2012-10-21 22:38:21 +0200 |
commit | a893655bdaa726a82424367b6456d195be12ebbc (patch) | |
tree | abf1f57a19f800eb73742d90e9f3a3d68fc3b285 /libavutil/error.h | |
parent | a4aa20fbdbe8a092fa0a2707cd702531865d957f (diff) | |
download | ffmpeg-a893655bdaa726a82424367b6456d195be12ebbc.tar.gz |
avutil: Add AVERROR_EXPERIMENTAL
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
Diffstat (limited to 'libavutil/error.h')
-rw-r--r-- | libavutil/error.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/error.h b/libavutil/error.h index 61d5fb9085..3dfd8807fe 100644 --- a/libavutil/error.h +++ b/libavutil/error.h @@ -60,6 +60,7 @@ #define AVERROR_STREAM_NOT_FOUND (-0x2dabac08) ///< Stream not found #define AVERROR_BUG (-0x5fb8aabe) ///< Bug detected, please report the issue #define AVERROR_UNKNOWN (-0x31b4b1ab) ///< Unknown error, typically from an external library +#define AVERROR_EXPERIMENTAL (-0x2bb2afa8) ///< Requested feature is flagged experimental. Set strict_std_compliance if you really want to use it. /** * Put a description of the AVERROR code errnum in errbuf. |