diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-03-26 04:41:25 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-04-04 19:08:05 +0200 |
commit | 01c5779f56cf708e6cb88b11cfdc248cae7e2ee8 (patch) | |
tree | 1424146b88fb5c2167edcc0a71c4ca3a903bc1a0 /libavresample/x86 | |
parent | b718b24bbe83d3e8787c1dc6449ccbffcd13a4e7 (diff) | |
download | ffmpeg-01c5779f56cf708e6cb88b11cfdc248cae7e2ee8.tar.gz |
x86: Drop some unnecessary YASM ifdefs
Dead code elimination is enough to avoid undefined references in these cases.
Diffstat (limited to 'libavresample/x86')
-rw-r--r-- | libavresample/x86/audio_mix_init.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavresample/x86/audio_mix_init.c b/libavresample/x86/audio_mix_init.c index 932f6f2126..7fc530ebc4 100644 --- a/libavresample/x86/audio_mix_init.c +++ b/libavresample/x86/audio_mix_init.c @@ -173,7 +173,6 @@ DEFINE_MIX_3_8_TO_1_2(8) av_cold void ff_audio_mix_init_x86(AudioMix *am) { -#if HAVE_YASM int cpu_flags = av_get_cpu_flags(); if (EXTERNAL_SSE(cpu_flags)) { @@ -211,5 +210,4 @@ av_cold void ff_audio_mix_init_x86(AudioMix *am) SET_MIX_3_8_TO_1_2(6) SET_MIX_3_8_TO_1_2(7) SET_MIX_3_8_TO_1_2(8) -#endif /* HAVE_YASM */ } |