summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2016-10-12 16:12:56 -0700
committerJames Zern <jzern@google.com>2016-10-12 16:12:56 -0700
commitfd270437f025fcec61b0f41cb247dbfa2dcf5c53 (patch)
treec029863ce82c9d4094397644f9a03286d1c99cf5
parent04a6010742b45fa0f9aef1c0f0f5ba79f24ce5e8 (diff)
downloadlibvpx-fd270437f025fcec61b0f41cb247dbfa2dcf5c53.tar
libvpx-fd270437f025fcec61b0f41cb247dbfa2dcf5c53.tar.gz
libvpx-fd270437f025fcec61b0f41cb247dbfa2dcf5c53.tar.bz2
libvpx-fd270437f025fcec61b0f41cb247dbfa2dcf5c53.zip
cosmetics,*loopfilter_neon.c: s/tranpose/transpose/
Change-Id: I267d6a9d715ddb6110f0881c2e820c37fc673fe1
-rw-r--r--vpx_dsp/arm/highbd_loopfilter_neon.c4
-rw-r--r--vpx_dsp/arm/loopfilter_neon.c8
2 files changed, 6 insertions, 6 deletions
diff --git a/vpx_dsp/arm/highbd_loopfilter_neon.c b/vpx_dsp/arm/highbd_loopfilter_neon.c
index e459414f4..5530c6425 100644
--- a/vpx_dsp/arm/highbd_loopfilter_neon.c
+++ b/vpx_dsp/arm/highbd_loopfilter_neon.c
@@ -649,7 +649,7 @@ void vpx_highbd_lpf_vertical_8_neon(uint16_t *s, int p, const uint8_t *blimit,
q0, q1, q2, q3, &flat, &flat_status, &hev, bd);
filter8(mask, flat, flat_status, hev, p3, p2, p1, p0, q0, q1, q2, q3, &op2,
&op1, &op0, &oq0, &oq1, &oq2, bd);
- // Note: store_6x8() is faster than tranpose + store_8x8().
+ // Note: store_6x8() is faster than transpose + store_8x8().
store_6x8(s, p, op2, op1, op0, oq0, oq1, oq2);
}
@@ -715,7 +715,7 @@ static void lpf_vertical_16_kernel(uint16_t *s, int p,
store_7x8(s - 3, p, op6, op5, op4, op3, op2, op1, op0);
store_7x8(s + 4, p, oq0, oq1, oq2, oq3, oq4, oq5, oq6);
} else {
- // Note: store_6x8() is faster than tranpose + store_8x8().
+ // Note: store_6x8() is faster than transpose + store_8x8().
store_6x8(s, p, op2, op1, op0, oq0, oq1, oq2);
}
} else {
diff --git a/vpx_dsp/arm/loopfilter_neon.c b/vpx_dsp/arm/loopfilter_neon.c
index b1f8f43b4..7419cea02 100644
--- a/vpx_dsp/arm/loopfilter_neon.c
+++ b/vpx_dsp/arm/loopfilter_neon.c
@@ -909,7 +909,7 @@ void vpx_lpf_vertical_8_neon(uint8_t *s, int p, const uint8_t *blimit,
p0, q0, q1, q2, q3, &flat, &flat_status, &hev);
filter8_8(mask, flat, flat_status, hev, p3, p2, p1, p0, q0, q1, q2, q3, &op2,
&op1, &op0, &oq0, &oq1, &oq2);
- // Note: tranpose + store_8x8() is faster than store_6x8().
+ // Note: transpose + store_8x8() is faster than store_6x8().
transpose_u8_8x8(&p3, &op2, &op1, &op0, &oq0, &oq1, &oq2, &q3);
store_8x8(s - 4, p, p3, op2, op1, op0, oq0, oq1, oq2, q3);
}
@@ -934,7 +934,7 @@ void vpx_lpf_vertical_8_dual_neon(uint8_t *s, int p, const uint8_t *blimit0,
p0, q0, q1, q2, q3, &flat, &flat_status, &hev);
filter8_16(mask, flat, flat_status, hev, p3, p2, p1, p0, q0, q1, q2, q3, &op2,
&op1, &op0, &oq0, &oq1, &oq2);
- // Note: store_6x8() twice is faster than tranpose + store_8x16().
+ // Note: store_6x8() twice is faster than transpose + store_8x16().
store_6x8(s, p, vget_low_u8(op2), vget_low_u8(op1), vget_low_u8(op0),
vget_low_u8(oq0), vget_low_u8(oq1), vget_low_u8(oq2));
store_6x8(s + 8 * p, p, vget_high_u8(op2), vget_high_u8(op1),
@@ -1037,7 +1037,7 @@ void vpx_lpf_vertical_16_neon(uint8_t *s, int p, const uint8_t *blimit,
&s6, &s7);
store_16x8(s, p, s0, s1, s2, s3, s4, s5, s6, s7);
} else {
- // Note: tranpose + store_8x8() is faster than store_6x8().
+ // Note: transpose + store_8x8() is faster than store_6x8().
transpose_u8_8x8(&p3, &op2, &op1, &op0, &oq0, &oq1, &oq2, &q3);
store_8x8(s + 4, p, p3, op2, op1, op0, oq0, oq1, oq2, q3);
}
@@ -1074,7 +1074,7 @@ void vpx_lpf_vertical_16_dual_neon(uint8_t *s, int p, const uint8_t *blimit,
store_16x16(s, p, s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, s11, s12,
s13, s14, s15);
} else {
- // Note: store_6x8() twice is faster than tranpose + store_8x16().
+ // Note: store_6x8() twice is faster than transpose + store_8x16().
s += 8;
store_6x8(s, p, vget_low_u8(op2), vget_low_u8(op1), vget_low_u8(op0),
vget_low_u8(oq0), vget_low_u8(oq1), vget_low_u8(oq2));