aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/ffmpeg-2.2/libavutil/cpu.pas
diff options
context:
space:
mode:
authorbrian-ch <brian-ch@b956fd51-792f-4845-bead-9b4dfca2ff2c>2014-06-16 00:40:08 +0000
committerbrian-ch <brian-ch@b956fd51-792f-4845-bead-9b4dfca2ff2c>2014-06-16 00:40:08 +0000
commit5b78c67260c14642ca29844750752ac2aa9d8333 (patch)
treef792a0a4ebca0f281d116c877e75b25727b71ad9 /src/lib/ffmpeg-2.2/libavutil/cpu.pas
parent167220739fc0b7506ee87c51696d259e95c2b0ed (diff)
downloadusdx-5b78c67260c14642ca29844750752ac2aa9d8333.tar.gz
usdx-5b78c67260c14642ca29844750752ac2aa9d8333.tar.xz
usdx-5b78c67260c14642ca29844750752ac2aa9d8333.zip
Update libavutil files for ffmpeg 2.2
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@3073 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'src/lib/ffmpeg-2.2/libavutil/cpu.pas')
-rw-r--r--src/lib/ffmpeg-2.2/libavutil/cpu.pas7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/lib/ffmpeg-2.2/libavutil/cpu.pas b/src/lib/ffmpeg-2.2/libavutil/cpu.pas
index 4cb468a8..631cc255 100644
--- a/src/lib/ffmpeg-2.2/libavutil/cpu.pas
+++ b/src/lib/ffmpeg-2.2/libavutil/cpu.pas
@@ -19,7 +19,7 @@
* - Changes and updates by the UltraStar Deluxe Team
*
* Conversion of libavutil/cpu.h
- * avutil version 52.48.100 - 52.48.101
+ * avutil version 52.66.100
*
*)
@@ -51,7 +51,10 @@ const
AV_CPU_FLAG_CMOV = $1001000; ///< supports cmov instruction
AV_CPU_FLAG_AVX2 = $8000; ///< AVX2 functions: requires OS support even if YMM registers aren't used
-
+ AV_CPU_FLAG_FMA3 = $10000; ///< Haswell FMA3 functions
+ AV_CPU_FLAG_BMI1 = $20000; ///< Bit Manipulation Instruction Set 1
+ AV_CPU_FLAG_BMI2 = $40000; ///< Bit Manipulation Instruction Set 2
+
AV_CPU_FLAG_ALTIVEC = $0001; ///< standard
AV_CPU_FLAG_ARMV5TE = (1 << 0);