diff options
Diffstat (limited to 'src/dsp/x86/transpose_sse4.h')
-rw-r--r-- | src/dsp/x86/transpose_sse4.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dsp/x86/transpose_sse4.h b/src/dsp/x86/transpose_sse4.h index 208b301..9726495 100644 --- a/src/dsp/x86/transpose_sse4.h +++ b/src/dsp/x86/transpose_sse4.h @@ -30,9 +30,9 @@ LIBGAV1_ALWAYS_INLINE void Transpose2x16_U16(const __m128i* const in, __m128i* const out) { // Unpack 16 bit elements. Goes from: // in[0]: 00 01 10 11 20 21 30 31 - // in[0]: 40 41 50 51 60 61 70 71 - // in[0]: 80 81 90 91 a0 a1 b0 b1 - // in[0]: c0 c1 d0 d1 e0 e1 f0 f1 + // in[1]: 40 41 50 51 60 61 70 71 + // in[2]: 80 81 90 91 a0 a1 b0 b1 + // in[3]: c0 c1 d0 d1 e0 e1 f0 f1 // to: // a0: 00 40 01 41 10 50 11 51 // a1: 20 60 21 61 30 70 31 71 |