aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/ffmpeg-0.10
diff options
context:
space:
mode:
authork-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2012-10-19 13:13:47 +0000
committerk-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2012-10-19 13:13:47 +0000
commit811417715784937a5d8b84743fcf29476b6a5687 (patch)
treecc764ef0565ad8350e51cdadbc0ee606e6b615ac /src/lib/ffmpeg-0.10
parent443ca12e52309ba9a6f6076a0feb9308326667a8 (diff)
downloadusdx-811417715784937a5d8b84743fcf29476b6a5687.tar.gz
usdx-811417715784937a5d8b84743fcf29476b6a5687.tar.xz
usdx-811417715784937a5d8b84743fcf29476b6a5687.zip
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
Diffstat (limited to 'src/lib/ffmpeg-0.10')
-rw-r--r--src/lib/ffmpeg-0.10/libavutil/error.pas3
1 files changed, 2 insertions, 1 deletions
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.