From 509d9f04e56258e8bcb59b0bb42e84053ba6021c Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Tue, 25 Aug 2009 12:27:32 +0200 Subject: remap: add sse optimized mono to stereo --- src/pulsecore/cpu-x86.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/pulsecore/cpu-x86.c') diff --git a/src/pulsecore/cpu-x86.c b/src/pulsecore/cpu-x86.c index bc093ec0..6f0cecc8 100644 --- a/src/pulsecore/cpu-x86.c +++ b/src/pulsecore/cpu-x86.c @@ -115,8 +115,10 @@ void pa_cpu_init_x86 (void) { pa_remap_func_init_mmx (flags); } - if (flags & PA_CPU_X86_SSE) + if (flags & PA_CPU_X86_SSE) { pa_volume_func_init_sse (flags); + pa_remap_func_init_sse (flags); + } #endif /* defined (__i386__) || defined (__amd64__) */ } -- cgit