diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-10-19 19:04:40 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-11-11 20:43:28 +0100 |
commit | 2b479bcab0a8365a7c094c5fa44b8cb6da9810d0 (patch) | |
tree | c29a12f0a7c4c1a2c12380d9d9479ef958668073 /libavutil/x86 | |
parent | b8e8a07c6c4df93de92480f5c3a14296a6a2a690 (diff) | |
download | ffmpeg-2b479bcab0a8365a7c094c5fa44b8cb6da9810d0.tar.gz |
build: Drop AVX assembly ifdefs
An assembler able to cope with AVX instructions is now required.
Diffstat (limited to 'libavutil/x86')
-rw-r--r-- | libavutil/x86/float_dsp.asm | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavutil/x86/float_dsp.asm b/libavutil/x86/float_dsp.asm index bbc9a8b5e2..a8857b937c 100644 --- a/libavutil/x86/float_dsp.asm +++ b/libavutil/x86/float_dsp.asm @@ -44,10 +44,8 @@ ALIGN 16 INIT_XMM sse VECTOR_FMUL -%if HAVE_AVX_EXTERNAL INIT_YMM avx VECTOR_FMUL -%endif ;------------------------------------------------------------------------------ ; void ff_vector_fmac_scalar(float *dst, const float *src, float mul, int len) @@ -85,7 +83,5 @@ cglobal vector_fmac_scalar, 4,4,3, dst, src, mul, len INIT_XMM sse VECTOR_FMAC_SCALAR -%if HAVE_AVX_EXTERNAL INIT_YMM avx VECTOR_FMAC_SCALAR -%endif |