projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c191306
)
avcodec/x86/lpc: Fix cpu flag checks so they work
author
Michael Niedermayer
<michaelni@gmx.at>
Fri, 30 Aug 2013 10:32:54 +0000
(12:32 +0200)
committer
Michael Niedermayer
<michaelni@gmx.at>
Fri, 30 Aug 2013 10:34:52 +0000
(12:34 +0200)
Broken by
6369ba3c9cc74becfaad2a8882dff3dd3e7ae3c0
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/x86/lpc.c
patch
|
blob
|
history
diff --git
a/libavcodec/x86/lpc.c
b/libavcodec/x86/lpc.c
index
f4dd189
..
8a74755
100644
(file)
--- a/
libavcodec/x86/lpc.c
+++ b/
libavcodec/x86/lpc.c
@@
-151,7
+151,7
@@
av_cold void ff_lpc_init_x86(LPCContext *c)
#if HAVE_SSE2_INLINE
int cpu_flags = av_get_cpu_flags();
- if (
INLINE_SSE2(cpu_flags) && (cpu_flags &
AV_CPU_FLAG_SSE2SLOW)) {
+ if (
HAVE_SSE2_INLINE && cpu_flags & (AV_CPU_FLAG_SSE2 |
AV_CPU_FLAG_SSE2SLOW)) {
c->lpc_apply_welch_window = lpc_apply_welch_window_sse2;
c->lpc_compute_autocorr = lpc_compute_autocorr_sse2;
}