fix typo in STORE_WHT

was working ok because dst == out

Change-Id: I27095129a11f468422250dd2b8fad8b3bd4e5bbd
This commit is contained in:
Pascal Massimino 2014-03-28 01:53:53 -07:00 committed by Gerrit Code Review
parent 6af6b8e1b6
commit af44460880

View File

@ -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) {