mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-27 19:24:06 +00:00
Rename struct hardware_flags to hardware_flags_t.
This commit is contained in:
parent
e7754bb518
commit
cf5f240604
|
@ -31,7 +31,7 @@
|
|||
#include <immintrin.h>
|
||||
#endif
|
||||
|
||||
hardware_flags g_hardware_flags;
|
||||
hardware_flags_t g_hardware_flags;
|
||||
|
||||
static void set_hardware_flags(int32_t cpuid);
|
||||
static void* strategyselector_choose_for(const strategy_list_t * const strategies, const char * const strategy_type);
|
||||
|
|
|
@ -134,9 +134,9 @@ typedef struct {
|
|||
struct {
|
||||
int neon;
|
||||
} arm_flags;
|
||||
} hardware_flags;
|
||||
} hardware_flags_t;
|
||||
|
||||
extern hardware_flags g_hardware_flags;
|
||||
extern hardware_flags_t g_hardware_flags;
|
||||
|
||||
|
||||
int strategyselector_init(int32_t cpuid);
|
||||
|
|
Loading…
Reference in a new issue