{dec,enc}_neon: harmonize function suffixes x2

+ neon.h

BUG=webp:355

Change-Id: Ia17c7dfc7d61742a4758823675a2d556a739c389
This commit is contained in:
James Zern
2017-10-20 00:54:12 -07:00
parent 0295e9815d
commit 8d033b14d7
3 changed files with 13 additions and 11 deletions

View File

@ -1219,7 +1219,7 @@ static void TransformWHT_NEON(const int16_t* in, int16_t* out) {
tmp.val[2] = vsubq_s32(a0, a1);
tmp.val[3] = vsubq_s32(a3, a2);
// Arrange the temporary results column-wise.
tmp = Transpose4x4(tmp);
tmp = Transpose4x4_NEON(tmp);
}
{