summaryrefslogtreecommitdiff
path: root/libavcodec/x86/mpegaudiodsp.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-01-13 18:52:32 +0100
committerDiego Biurrun <diego@biurrun.de>2014-01-14 00:04:58 +0100
commit46bacb5cc6169ff5e8e982495c4925467c1d8bb7 (patch)
tree57b5d6c428fc251315c868953171bf0d2f901111 /libavcodec/x86/mpegaudiodsp.c
parent7151c5d04aed3b496c21f713dcb603e2cbdb9c49 (diff)
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.c2
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 */