summaryrefslogtreecommitdiff
path: root/libavcodec/x86/v210-init.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2012-01-12 16:35:49 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2012-01-12 16:35:49 +0100
commitef3a19d5950ebe8a07c4e31b65ecf95e03fd85f5 (patch)
treeb53177345eaaf959c7ce838b419df232f0bb438d /libavcodec/x86/v210-init.c
parent05577aafaa75e255a140cd8454fd7c8cffa67965 (diff)
downloadffmpeg-ef3a19d5950ebe8a07c4e31b65ecf95e03fd85f5.tar.gz
Fix compilation with yasm-0.6.2
Diffstat (limited to 'libavcodec/x86/v210-init.c')
-rw-r--r--libavcodec/x86/v210-init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/v210-init.c b/libavcodec/x86/v210-init.c
index 4dd6d6de8a..425c6284c5 100644
--- a/libavcodec/x86/v210-init.c
+++ b/libavcodec/x86/v210-init.c
@@ -34,14 +34,14 @@ av_cold void v210_x86_init(V210DecContext *s)
if (cpu_flags & AV_CPU_FLAG_SSSE3)
s->unpack_frame = ff_v210_planar_unpack_aligned_ssse3;
- if (cpu_flags & AV_CPU_FLAG_AVX)
+ if (HAVE_AVX && cpu_flags & AV_CPU_FLAG_AVX)
s->unpack_frame = ff_v210_planar_unpack_aligned_avx;
}
else {
if (cpu_flags & AV_CPU_FLAG_SSSE3)
s->unpack_frame = ff_v210_planar_unpack_unaligned_ssse3;
- if (cpu_flags & AV_CPU_FLAG_AVX)
+ if (HAVE_AVX && cpu_flags & AV_CPU_FLAG_AVX)
s->unpack_frame = ff_v210_planar_unpack_unaligned_avx;
}
#endif