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 ++ 1 file changed, 2 insertions(+) (limited to 'libavutil/error.h') 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. -- cgit v1.2.3