mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-02 09:01:46 -05:00
cpu: Don't check for both x86 and ARM code
Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
This commit is contained in:
parent
380591eb18
commit
61c888dc93
1 changed files with 1 additions and 1 deletions
|
|
@ -26,7 +26,7 @@ void pa_cpu_init(pa_cpu_info *cpu_info) {
|
|||
if (!getenv("PULSE_NO_SIMD")) {
|
||||
if (pa_cpu_init_x86(&cpu_info->flags.x86))
|
||||
cpu_info->cpu_type = PA_CPU_X86;
|
||||
if (pa_cpu_init_arm(&cpu_info->flags.arm))
|
||||
else if (pa_cpu_init_arm(&cpu_info->flags.arm))
|
||||
cpu_info->cpu_type = PA_CPU_ARM;
|
||||
pa_cpu_init_orc(*cpu_info);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue