diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2014-05-25 17:49:15 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2014-08-10 14:26:37 +0200 |
commit | fb1ddcdc8f51b9d261ae8e9c26b91e81f7b6bf45 (patch) | |
tree | 00f966d82d400e4326e70871723c066c6126ac04 /libavutil | |
parent | 8c6f430291374cf6d2cfb85cdbb809803b5a7d83 (diff) | |
download | ffmpeg-fb1ddcdc8f51b9d261ae8e9c26b91e81f7b6bf45.tar.gz |
avresample: Introduce AVFrame-based API
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/error.h | 2 | ||||
-rw-r--r-- | libavutil/version.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/libavutil/error.h b/libavutil/error.h index 268a0320a8..8be87cbeba 100644 --- a/libavutil/error.h +++ b/libavutil/error.h @@ -60,6 +60,8 @@ #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. +#define AVERROR_INPUT_CHANGED (-0x636e6701) ///< Input changed between calls. Reconfiguration is required. (can be OR-ed with AVERROR_OUTPUT_CHANGED) +#define AVERROR_OUTPUT_CHANGED (-0x636e6702) ///< Output changed between calls. Reconfiguration is required. (can be OR-ed with AVERROR_INPUT_CHANGED) /** * Put a description of the AVERROR code errnum in errbuf. diff --git a/libavutil/version.h b/libavutil/version.h index e5eb196ff4..7c9fdb2620 100644 --- a/libavutil/version.h +++ b/libavutil/version.h @@ -54,7 +54,7 @@ */ #define LIBAVUTIL_VERSION_MAJOR 54 -#define LIBAVUTIL_VERSION_MINOR 0 +#define LIBAVUTIL_VERSION_MINOR 1 #define LIBAVUTIL_VERSION_MICRO 0 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ |