diff options
| author | Alexander Neumann <30894796+Neumann-A@users.noreply.github.com> | 2022-05-16 23:10:26 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-16 23:10:26 +0200 |
| commit | 098bb874db85c185e2e3598f735fece7552e6dca (patch) | |
| tree | 0dd118a2a54f8665d386863c29730ba81149c4f0 /src | |
| parent | 46b42b616dfcd25f683997a5ebc38c657b128394 (diff) | |
Fix windows arm builds
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/openjp2/ht_dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/openjp2/ht_dec.c b/src/lib/openjp2/ht_dec.c index 1eb4d525..e2f3afd6 100644 --- a/src/lib/openjp2/ht_dec.c +++ b/src/lib/openjp2/ht_dec.c @@ -69,7 +69,7 @@ static OPJ_BOOL only_cleanup_pass_is_decoded = OPJ_FALSE; static INLINE OPJ_UINT32 population_count(OPJ_UINT32 val) { -#ifdef OPJ_COMPILER_MSVC +#if defined(OPJ_COMPILER_MSVC) && (defined(_M_IX86) || defined(_M_AMD64)) return (OPJ_UINT32)__popcnt(val); #elif (defined OPJ_COMPILER_GNUC) return (OPJ_UINT32)__builtin_popcount(val); |
