]> granicus.if.org Git - libvpx/blob - vpx_dsp/ppc/types_vsx.h
66a9a03fe283914584d3d1293a870b5dd90826dd
[libvpx] / vpx_dsp / ppc / types_vsx.h
1 /*
2  *  Copyright (c) 2017 The WebM project authors. All Rights Reserved.
3  *
4  *  Use of this source code is governed by a BSD-style license
5  *  that can be found in the LICENSE file in the root of the source
6  *  tree. An additional intellectual property rights grant can be found
7  *  in the file PATENTS.  All contributing project authors may
8  *  be found in the AUTHORS file in the root of the source tree.
9  */
10
11 #ifndef VPX_DSP_PPC_TYPES_VSX_H_
12 #define VPX_DSP_PPC_TYPES_VSX_H_
13
14 #include <altivec.h>
15
16 typedef vector signed char int8x16_t;
17 typedef vector unsigned char uint8x16_t;
18 typedef vector signed short int16x8_t;
19 typedef vector unsigned short uint16x8_t;
20 typedef vector signed int int32x4_t;
21 typedef vector unsigned int uint32x4_t;
22
23 #endif  // VPX_DSP_PPC_TYPES_VSX_H_