aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/x86/h264_deblock.asm
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2012-02-12 21:37:08 +0100
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2012-02-12 21:42:31 +0100
commitf51a0721604deb9aea230522e618b2c4769cad77 (patch)
tree13fe955ae9aaa6d5acc710255730a93c9ac39f0c /libavcodec/x86/h264_deblock.asm
parent18a7f7465e7e6b9c3688ffc23230ae7a0639a771 (diff)
downloadffmpeg-f51a0721604deb9aea230522e618b2c4769cad77.tar.gz
Fix compilation without HAVE_AVX.
%ifdef HAVE_AVX must now be %if HAVE_AVX. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'libavcodec/x86/h264_deblock.asm')
-rw-r--r--libavcodec/x86/h264_deblock.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/x86/h264_deblock.asm b/libavcodec/x86/h264_deblock.asm
index bff6597d55..9f517bfe96 100644
--- a/libavcodec/x86/h264_deblock.asm
+++ b/libavcodec/x86/h264_deblock.asm
@@ -386,7 +386,7 @@ cglobal deblock_h_luma_8_%1, 5,7
INIT_XMM
DEBLOCK_LUMA sse2
-%ifdef HAVE_AVX
+%if HAVE_AVX
INIT_AVX
DEBLOCK_LUMA avx
%endif
@@ -507,7 +507,7 @@ INIT_MMX
DEBLOCK_LUMA mmxext, v8, 8
INIT_XMM
DEBLOCK_LUMA sse2, v, 16
-%ifdef HAVE_AVX
+%if HAVE_AVX
INIT_AVX
DEBLOCK_LUMA avx, v, 16
%endif
@@ -781,7 +781,7 @@ cglobal deblock_h_luma_intra_8_%1, 2,4
INIT_XMM
DEBLOCK_LUMA_INTRA sse2, v
-%ifdef HAVE_AVX
+%if HAVE_AVX
INIT_AVX
DEBLOCK_LUMA_INTRA avx , v
%endif