From c520e77d9414d9a23e50222a7e6b4ca2ff701969 Mon Sep 17 00:00:00 2001 From: Pascal Massimino Date: Wed, 2 Apr 2014 23:00:50 -0700 Subject: [PATCH] cosmetic: fix long line Change-Id: Id04b368aea5784a98c705f323b32d35b362742ea --- src/dsp/dec_neon.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/dsp/dec_neon.c b/src/dsp/dec_neon.c index 75628b16..7f538d73 100644 --- a/src/dsp/dec_neon.c +++ b/src/dsp/dec_neon.c @@ -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, uint8_t* const u, uint8_t* const v, int stride) { - const uint8x8x4_t u0 = - {{vget_low_u8(p1), vget_low_u8(p0), vget_low_u8(q0), vget_low_u8(q1)}}; - const uint8x8x4_t v0 = - {{vget_high_u8(p1), vget_high_u8(p0), vget_high_u8(q0), vget_high_u8(q1)}}; + const uint8x8x4_t u0 = {{ vget_low_u8(p1), vget_low_u8(p0), + vget_low_u8(q0), vget_low_u8(q1) }}; + const uint8x8x4_t v0 = {{ vget_high_u8(p1), vget_high_u8(p0), + vget_high_u8(q0), vget_high_u8(q1) }}; vst4_lane_u8(u - 2 + 0 * stride, u0, 0); vst4_lane_u8(u - 2 + 1 * stride, u0, 1); vst4_lane_u8(u - 2 + 2 * stride, u0, 2);