aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/x86/lpc.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-06-15 07:15:01 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-06-18 19:25:03 +0200
commit6d3f771588ee1e156082b42da8ef4d002557d38c (patch)
treebefdb139848188f1a3600eb96d7826a68779eadd /libavcodec/x86/lpc.c
parentac322ec21418a7510815eda198c978d43d5cd507 (diff)
downloadffmpeg-6d3f771588ee1e156082b42da8ef4d002557d38c.tar.gz
avcodec/x86/lpc, vp8dsp_init: Remove redundant checks
EXTERNAL_SSE2_SLOW is now more encompassing than EXTERNAL_SSE2. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/x86/lpc.c')
-rw-r--r--libavcodec/x86/lpc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/lpc.c b/libavcodec/x86/lpc.c
index 544083bd37..40fc29fc0f 100644
--- a/libavcodec/x86/lpc.c
+++ b/libavcodec/x86/lpc.c
@@ -154,7 +154,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) || INLINE_SSE2_SLOW(cpu_flags)) {
+ if (INLINE_SSE2_SLOW(cpu_flags)) {
c->lpc_apply_welch_window = lpc_apply_welch_window_sse2;
c->lpc_compute_autocorr = lpc_compute_autocorr_sse2;
}