mirror of
https://github.com/webmproject/libwebp.git
synced 2024-12-28 14:38:21 +01:00
fix typo in STORE_WHT
was working ok because dst == out Change-Id: I27095129a11f468422250dd2b8fad8b3bd4e5bbd
This commit is contained in:
parent
6af6b8e1b6
commit
af44460880
@ -360,11 +360,11 @@ static void TransformDC(const int16_t* in, uint8_t* dst) {
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
#define STORE_WHT(dst, col, row01, row23) do { \
|
||||
*dst = vgetq_lane_s32(row01.val[0], col); out += 16; \
|
||||
*dst = vgetq_lane_s32(row01.val[1], col); out += 16; \
|
||||
*dst = vgetq_lane_s32(row23.val[0], col); out += 16; \
|
||||
*dst = vgetq_lane_s32(row23.val[1], col); out += 16; \
|
||||
#define STORE_WHT(dst, col, row01, row23) do { \
|
||||
*dst = vgetq_lane_s32(row01.val[0], col); (dst) += 16; \
|
||||
*dst = vgetq_lane_s32(row01.val[1], col); (dst) += 16; \
|
||||
*dst = vgetq_lane_s32(row23.val[0], col); (dst) += 16; \
|
||||
*dst = vgetq_lane_s32(row23.val[1], col); (dst) += 16; \
|
||||
} while (0)
|
||||
|
||||
static void TransformWHT(const int16_t* in, int16_t* out) {
|
||||
|
Loading…
Reference in New Issue
Block a user