diff options
author | Haibo Huang <hhb@google.com> | 2021-01-28 21:53:14 -0800 |
---|---|---|
committer | Haibo Huang <hhb@google.com> | 2021-01-28 21:53:14 -0800 |
commit | f7bb80dc5eb581060f92d9f27e7326e1c03a0cdc (patch) | |
tree | f616cbf164716ee566a2b186cfc40a4d23540fdf /simd/arm/jcphuff-neon.c | |
parent | 8091842bf92addd9e7f089a5a13f913c5596d502 (diff) | |
parent | fa0de07678c9828cc57b3eb086c03771912ba527 (diff) |
Upgrade libjpeg-turbo to fa0de07678c9828cc57b3eb086c03771912ba527
Test: make
Change-Id: I5de273521ea963ae8720779874e9796e94433cd9
Diffstat (limited to 'simd/arm/jcphuff-neon.c')
-rw-r--r-- | simd/arm/jcphuff-neon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/simd/arm/jcphuff-neon.c b/simd/arm/jcphuff-neon.c index 8b6d53b..86a263f 100644 --- a/simd/arm/jcphuff-neon.c +++ b/simd/arm/jcphuff-neon.c @@ -1,7 +1,7 @@ /* * jcphuff-neon.c - prepare data for progressive Huffman encoding (Arm Neon) * - * Copyright (C) 2020, Arm Limited. All Rights Reserved. + * Copyright (C) 2020-2021, Arm Limited. All Rights Reserved. * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any damages @@ -572,7 +572,7 @@ int jsimd_encode_mcu_AC_refine_prepare_neon /* EOB position is defined to be 0 if all coefficients != 1. */ return 0; } else { - return 63 - BUILTIN_CLZL(bitmap); + return 63 - BUILTIN_CLZLL(bitmap); } #else /* Move bitmap to two 32-bit scalar registers. */ |