diff options
Diffstat (limited to 'src/pulsecore/cpu-x86.c')
-rw-r--r-- | src/pulsecore/cpu-x86.c | 4 |
1 files changed, 3 insertions, 1 deletions
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__) */ } |