Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2012-04-28 14:51:06 +0400
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2012-04-28 15:01:49 +0400
commit9d4a1aca883965cfc2bbc5a6f9c9d8f4b93f9d74 (patch)
treee437fde329714f4355ba2561c22f73b59a8d3bc1
parenta0a0199da3f9730f23f3f73f193991d05bf12d71 (diff)
Fix compilation with YASM/NASM without AVX support.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
-rw-r--r--libavresample/x86/audio_mix.asm2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavresample/x86/audio_mix.asm b/libavresample/x86/audio_mix.asm
index ef30f02486..dbc79e585d 100644
--- a/libavresample/x86/audio_mix.asm
+++ b/libavresample/x86/audio_mix.asm
@@ -60,5 +60,7 @@ cglobal mix_2_to_1_fltp_flt, 3,4,6, src, matrix, len, src1
INIT_XMM sse
MIX_2_TO_1_FLTP_FLT
+%if HAVE_AVX
INIT_YMM avx
MIX_2_TO_1_FLTP_FLT
+%endif