summaryrefslogtreecommitdiff
path: root/libavutil/x86
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-10-19 19:04:40 +0200
committerDiego Biurrun <diego@biurrun.de>2012-11-11 20:43:28 +0100
commit2b479bcab0a8365a7c094c5fa44b8cb6da9810d0 (patch)
treec29a12f0a7c4c1a2c12380d9d9479ef958668073 /libavutil/x86
parentb8e8a07c6c4df93de92480f5c3a14296a6a2a690 (diff)
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.asm4
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