summaryrefslogtreecommitdiff
path: root/vpx_dsp/arm
diff options
context:
space:
mode:
authorWan-Teh Chang <wtc@google.com>2019-07-17 11:09:55 -0700
committerWan-Teh Chang <wtc@google.com>2019-07-17 11:09:55 -0700
commitce13498b2acccadbd1961e9c52ef2a9b778ca8c2 (patch)
tree5a520922d656abe0ebc0b3d188ad7750bbf57105 /vpx_dsp/arm
parent53dc2d9d96d2c1bf397b2c1293acaab708371e7d (diff)
downloadlibvpx-ce13498b2acccadbd1961e9c52ef2a9b778ca8c2.tar
libvpx-ce13498b2acccadbd1961e9c52ef2a9b778ca8c2.tar.gz
libvpx-ce13498b2acccadbd1961e9c52ef2a9b778ca8c2.tar.bz2
libvpx-ce13498b2acccadbd1961e9c52ef2a9b778ca8c2.zip
Fix comment typos.
Fix comment typos in transpose_s16_4x4q() and transpose_u16_4x4q(). Change-Id: I21bcc1fb3fb880798e5a3927c3dbe81dd518c83b
Diffstat (limited to 'vpx_dsp/arm')
-rw-r--r--vpx_dsp/arm/transpose_neon.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/vpx_dsp/arm/transpose_neon.h b/vpx_dsp/arm/transpose_neon.h
index 43340e48d..752308160 100644
--- a/vpx_dsp/arm/transpose_neon.h
+++ b/vpx_dsp/arm/transpose_neon.h
@@ -138,8 +138,8 @@ static INLINE void transpose_s16_4x4q(int16x8_t *a0, int16x8_t *a1) {
vtrnq_s32(vreinterpretq_s32_s16(*a0), vreinterpretq_s32_s16(*a1));
// Swap 64 bit elements resulting in:
- // c0.val[0]: 00 01 20 21 02 03 22 23
- // c0.val[1]: 10 11 30 31 12 13 32 33
+ // c0: 00 01 20 21 02 03 22 23
+ // c1: 10 11 30 31 12 13 32 33
const int32x4_t c0 =
vcombine_s32(vget_low_s32(b0.val[0]), vget_low_s32(b0.val[1]));
@@ -169,8 +169,8 @@ static INLINE void transpose_u16_4x4q(uint16x8_t *a0, uint16x8_t *a1) {
vtrnq_u32(vreinterpretq_u32_u16(*a0), vreinterpretq_u32_u16(*a1));
// Swap 64 bit elements resulting in:
- // c0.val[0]: 00 01 20 21 02 03 22 23
- // c0.val[1]: 10 11 30 31 12 13 32 33
+ // c0: 00 01 20 21 02 03 22 23
+ // c1: 10 11 30 31 12 13 32 33
const uint32x4_t c0 =
vcombine_u32(vget_low_u32(b0.val[0]), vget_low_u32(b0.val[1]));