From fb1ddcdc8f51b9d261ae8e9c26b91e81f7b6bf45 Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Sun, 25 May 2014 17:49:15 +0200 Subject: avresample: Introduce AVFrame-based API --- libavutil/error.h | 2 ++ libavutil/version.h | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'libavutil') 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, \ -- cgit v1.2.3