diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-09-01 10:59:16 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-09-01 10:59:16 +0200 |
commit | a26789cf9f8000a040a4f4481e0f3552cf63dc68 (patch) | |
tree | ddbaa9b84e427c4538745673c3755b05e3ef6e3d /libavcodec/x86/v210-init.c | |
parent | d55252c33156a53dae8e1beba73b163724dec8cf (diff) | |
download | ffmpeg-a26789cf9f8000a040a4f4481e0f3552cf63dc68.tar.gz |
Fix compilation with yasm-0.6.2.
Diffstat (limited to 'libavcodec/x86/v210-init.c')
-rw-r--r-- | libavcodec/x86/v210-init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/v210-init.c b/libavcodec/x86/v210-init.c index c961178e51..02c5eaa2c2 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 (HAVE_AVX && cpu_flags & AV_CPU_FLAG_AVX) + if (HAVE_AVX_EXTERNAL && 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 (HAVE_AVX && cpu_flags & AV_CPU_FLAG_AVX) + if (HAVE_AVX_EXTERNAL && cpu_flags & AV_CPU_FLAG_AVX) s->unpack_frame = ff_v210_planar_unpack_unaligned_avx; } #endif |