mirror of
https://github.com/webmproject/libwebp.git
synced 2024-12-28 14:38:21 +01:00
cosmetic: fix long line
Change-Id: Id04b368aea5784a98c705f323b32d35b362742ea
This commit is contained in:
parent
4b0f2dae6f
commit
c520e77d94
@ -434,10 +434,10 @@ static WEBP_INLINE void Store4x8x2(const uint8x16_t p1, const uint8x16_t p0,
|
|||||||
const uint8x16_t q0, const uint8x16_t q1,
|
const uint8x16_t q0, const uint8x16_t q1,
|
||||||
uint8_t* const u, uint8_t* const v,
|
uint8_t* const u, uint8_t* const v,
|
||||||
int stride) {
|
int stride) {
|
||||||
const uint8x8x4_t u0 =
|
const uint8x8x4_t u0 = {{ vget_low_u8(p1), vget_low_u8(p0),
|
||||||
{{vget_low_u8(p1), vget_low_u8(p0), vget_low_u8(q0), vget_low_u8(q1)}};
|
vget_low_u8(q0), vget_low_u8(q1) }};
|
||||||
const uint8x8x4_t v0 =
|
const uint8x8x4_t v0 = {{ vget_high_u8(p1), vget_high_u8(p0),
|
||||||
{{vget_high_u8(p1), vget_high_u8(p0), vget_high_u8(q0), vget_high_u8(q1)}};
|
vget_high_u8(q0), vget_high_u8(q1) }};
|
||||||
vst4_lane_u8(u - 2 + 0 * stride, u0, 0);
|
vst4_lane_u8(u - 2 + 0 * stride, u0, 0);
|
||||||
vst4_lane_u8(u - 2 + 1 * stride, u0, 1);
|
vst4_lane_u8(u - 2 + 1 * stride, u0, 1);
|
||||||
vst4_lane_u8(u - 2 + 2 * stride, u0, 2);
|
vst4_lane_u8(u - 2 + 2 * stride, u0, 2);
|
||||||
|
Loading…
Reference in New Issue
Block a user