27 lines
903 B
C
27 lines
903 B
C
|
/*
|
||
|
* Copyright (c) 2015 The WebM project authors. All Rights Reserved.
|
||
|
*
|
||
|
* Use of this source code is governed by a BSD-style license
|
||
|
* that can be found in the LICENSE file in the root of the source
|
||
|
* tree. An additional intellectual property rights grant can be found
|
||
|
* in the file PATENTS. All contributing project authors may
|
||
|
* be found in the AUTHORS file in the root of the source tree.
|
||
|
*/
|
||
|
|
||
|
#ifndef VPX_DSP_X86_TRANSPOSE_SSE2_H_
|
||
|
#define VPX_DSP_X86_TRANSPOSE_SSE2_H_
|
||
|
|
||
|
#include "./vpx_dsp_rtcd.h"
|
||
|
#include "vpx_dsp/x86/inv_txfm_sse2.h"
|
||
|
#include "vpx_dsp/x86/txfm_common_sse2.h"
|
||
|
|
||
|
static INLINE void transpose_4x4(__m128i *res) {
|
||
|
const __m128i tr0_0 = _mm_unpacklo_epi16(res[0], res[1]);
|
||
|
const __m128i tr0_1 = _mm_unpackhi_epi16(res[0], res[1]);
|
||
|
|
||
|
res[0] = _mm_unpacklo_epi16(tr0_0, tr0_1);
|
||
|
res[1] = _mm_unpackhi_epi16(tr0_0, tr0_1);
|
||
|
}
|
||
|
|
||
|
#endif // VPX_DSP_X86_TRANSPOSE_SSE2_H_
|