summaryrefslogtreecommitdiff
path: root/vpx_dsp/x86/transpose_sse2.h
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2020-04-03 13:50:40 -0700
committerJames Zern <jzern@google.com>2020-04-03 13:50:40 -0700
commitce84336ec316cd13824f70ed34ebd3f4b5ddccde (patch)
tree2b46f407b15f8e9f336ba97e7a27dba23feb870a /vpx_dsp/x86/transpose_sse2.h
parent4b0422ad096c64bef9d7f972c092f5090510bdc1 (diff)
downloadlibvpx-ce84336ec316cd13824f70ed34ebd3f4b5ddccde.tar
libvpx-ce84336ec316cd13824f70ed34ebd3f4b5ddccde.tar.gz
libvpx-ce84336ec316cd13824f70ed34ebd3f4b5ddccde.tar.bz2
libvpx-ce84336ec316cd13824f70ed34ebd3f4b5ddccde.zip
transpose_sse2.h,cosmetics: fix some comments
Change-Id: Idae90838012c78605f20f1d7a3125b71683f6f44
Diffstat (limited to 'vpx_dsp/x86/transpose_sse2.h')
-rw-r--r--vpx_dsp/x86/transpose_sse2.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vpx_dsp/x86/transpose_sse2.h b/vpx_dsp/x86/transpose_sse2.h
index 6e07871b1..b4f1190d7 100644
--- a/vpx_dsp/x86/transpose_sse2.h
+++ b/vpx_dsp/x86/transpose_sse2.h
@@ -16,7 +16,7 @@
#include "./vpx_config.h"
static INLINE __m128i transpose_8bit_4x4(const __m128i *const in) {
- // Unpack 16 bit elements. Goes from:
+ // Unpack 8 bit elements. Goes from:
// in[0]: 00 01 02 03
// in[1]: 10 11 12 13
// in[2]: 20 21 22 23
@@ -27,7 +27,7 @@ static INLINE __m128i transpose_8bit_4x4(const __m128i *const in) {
const __m128i a0 = _mm_unpacklo_epi8(in[0], in[1]);
const __m128i a1 = _mm_unpacklo_epi8(in[2], in[3]);
- // Unpack 32 bit elements resulting in:
+ // Unpack 16 bit elements resulting in:
// 00 10 20 30 01 11 21 31 02 12 22 32 03 13 23 33
return _mm_unpacklo_epi16(a0, a1);
}