mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-11 13:30:02 -05:00
core: Distinguish Cortex processors: A8 vs later (A9, A15)
Signed-off-by: Peter Meerwald <p.meerwald@bct-electronic.com>
This commit is contained in:
parent
789da0c063
commit
40450bdbf2
2 changed files with 16 additions and 7 deletions
|
|
@ -36,7 +36,8 @@ typedef enum pa_cpu_arm_flag {
|
|||
PA_CPU_ARM_VFP = (1 << 2),
|
||||
PA_CPU_ARM_EDSP = (1 << 3),
|
||||
PA_CPU_ARM_NEON = (1 << 4),
|
||||
PA_CPU_ARM_VFPV3 = (1 << 5)
|
||||
PA_CPU_ARM_VFPV3 = (1 << 5),
|
||||
PA_CPU_ARM_CORTEX_A8 = (1 << 6),
|
||||
} pa_cpu_arm_flag_t;
|
||||
|
||||
void pa_cpu_get_arm_flags(pa_cpu_arm_flag_t *flags);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue