From 811417715784937a5d8b84743fcf29476b6a5687 Mon Sep 17 00:00:00 2001 From: k-m_schindler Date: Fri, 19 Oct 2012 13:13:47 +0000 Subject: add AVERROR_UNKNOWN. Although it is not in 10.0, but only in the later, it does not harm 10.0 git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2925 b956fd51-792f-4845-bead-9b4dfca2ff2c --- src/lib/ffmpeg-0.10/libavutil/error.pas | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/lib/ffmpeg-0.10') diff --git a/src/lib/ffmpeg-0.10/libavutil/error.pas b/src/lib/ffmpeg-0.10/libavutil/error.pas index da6cce6c..d7a7354c 100644 --- a/src/lib/ffmpeg-0.10/libavutil/error.pas +++ b/src/lib/ffmpeg-0.10/libavutil/error.pas @@ -109,7 +109,8 @@ const * This is semantically identical to AVERROR_BUG * it has been introduced in Libav after our AVERROR_BUG and with a modified value. *) - AVERROR_BUG2 = -(ord('B') or (ord('U') shl 8) or (ord('G') shl 16) or (ord(' ') shl 24)); + AVERROR_BUG2 = -(ord('B') or (ord('U') shl 8) or (ord('G') shl 16) or (ord(' ') shl 24)); + AVERROR_UNKNOWN = -(ord('U') or (ord('N') shl 8) or (ord('K') shl 16) or (ord('N') shl 24)); ///< Unknown error, typically from an external library (* * Put a description of the AVERROR code errnum in errbuf. -- cgit v1.2.3