diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-01-14 14:44:53 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-01-14 14:44:59 +0100 |
commit | b148a39d55ee90255dad0e58d1c11181343ea30e (patch) | |
tree | ecaa990ffd7039f9ece6f9633fe19766a8f5f942 /libavcodec | |
parent | 7766c7b7a0097e257c9070c9ef4275f8ec9b46dc (diff) | |
parent | 46bacb5cc6169ff5e8e982495c4925467c1d8bb7 (diff) | |
download | ffmpeg-b148a39d55ee90255dad0e58d1c11181343ea30e.tar.gz |
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')
-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 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 */ |