mirror of
https://github.com/webmproject/libwebp.git
synced 2025-07-17 06:19:54 +02:00
dec/dsp/enc/utils,cosmetics: rm struct member '_' suffix
This is a follow up to:
ee8e8c62
Fix member naming for VP8LHistogram
This better matches Google style and clears some clang-tidy warnings.
This is the final change in this set. It is rather large due to the
shared dependencies between dec/enc.
Change-Id: I89de06b5653ae0bb627f904fa6060334831f7e3b
This commit is contained in:
@ -362,9 +362,9 @@ static void TransformColorInverse_AVX2(const VP8LMultipliers* const m,
|
||||
// sign-extended multiplying constants, pre-shifted by 5.
|
||||
#define CST(X) (((int16_t)(m->X << 8)) >> 5) // sign-extend
|
||||
const __m256i mults_rb =
|
||||
_mm256_set1_epi32((int)((uint32_t)CST(green_to_red_) << 16 |
|
||||
(CST(green_to_blue_) & 0xffff)));
|
||||
const __m256i mults_b2 = _mm256_set1_epi32(CST(red_to_blue_));
|
||||
_mm256_set1_epi32((int)((uint32_t)CST(green_to_red) << 16 |
|
||||
(CST(green_to_blue) & 0xffff)));
|
||||
const __m256i mults_b2 = _mm256_set1_epi32(CST(red_to_blue));
|
||||
#undef CST
|
||||
const __m256i mask_ag = _mm256_set1_epi32((int)0xff00ff00);
|
||||
const __m256i perm1 = _mm256_setr_epi8(
|
||||
|
Reference in New Issue
Block a user