diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-01-13 18:52:32 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-01-14 00:04:58 +0100 |
commit | 46bacb5cc6169ff5e8e982495c4925467c1d8bb7 (patch) | |
tree | 57b5d6c428fc251315c868953171bf0d2f901111 /libavcodec/x86/mpegaudiodsp.c | |
parent | 7151c5d04aed3b496c21f713dcb603e2cbdb9c49 (diff) | |
download | ffmpeg-46bacb5cc6169ff5e8e982495c4925467c1d8bb7.tar.gz |
x86: Consistently use cpu flag detection macros in places that still miss it
Diffstat (limited to 'libavcodec/x86/mpegaudiodsp.c')
-rw-r--r-- | libavcodec/x86/mpegaudiodsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/mpegaudiodsp.c b/libavcodec/x86/mpegaudiodsp.c index 3f0943c06e..f45cb7e4a4 100644 --- a/libavcodec/x86/mpegaudiodsp.c +++ b/libavcodec/x86/mpegaudiodsp.c @@ -243,7 +243,7 @@ av_cold void ff_mpadsp_init_x86(MPADSPContext *s) } #if HAVE_SSE2_INLINE - if (cpu_flags & AV_CPU_FLAG_SSE2) { + if (INLINE_SSE2(cpu_flags)) { s->apply_window_float = apply_window_mp3; } #endif /* HAVE_SSE2_INLINE */ |