summaryrefslogtreecommitdiff
path: root/libavcodec/x86/mpegaudiodsp.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-01-14 14:44:53 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-01-14 14:44:59 +0100
commitb148a39d55ee90255dad0e58d1c11181343ea30e (patch)
treeecaa990ffd7039f9ece6f9633fe19766a8f5f942 /libavcodec/x86/mpegaudiodsp.c
parent7766c7b7a0097e257c9070c9ef4275f8ec9b46dc (diff)
parent46bacb5cc6169ff5e8e982495c4925467c1d8bb7 (diff)
Merge commit '46bacb5cc6169ff5e8e982495c4925467c1d8bb7'
* commit '46bacb5cc6169ff5e8e982495c4925467c1d8bb7': x86: Consistently use cpu flag detection macros in places that still miss it Merged-by: Michael Niedermayer <michaelni@gmx.at>
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 9c6f7950a5..2ec4c5dc6c 100644
--- a/libavcodec/x86/mpegaudiodsp.c
+++ b/libavcodec/x86/mpegaudiodsp.c
@@ -252,7 +252,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 */