vp8,get_sub_mv_ref_prob: change arguments to uint32_t
[platform/upstream/libvpx.git] / vpx_ports / vpx_ports.mk
1 ##
2 ##  Copyright (c) 2012 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
12 PORTS_SRCS-yes += vpx_ports.mk
13
14 PORTS_SRCS-yes += bitops.h
15 PORTS_SRCS-yes += compiler_attributes.h
16 PORTS_SRCS-yes += mem.h
17 PORTS_SRCS-yes += msvc.h
18 PORTS_SRCS-yes += static_assert.h
19 PORTS_SRCS-yes += system_state.h
20 PORTS_SRCS-yes += vpx_timer.h
21
22 ifeq ($(VPX_ARCH_X86),yes)
23 PORTS_SRCS-$(HAVE_MMX) += emms_mmx.c
24 endif
25 ifeq ($(VPX_ARCH_X86_64),yes)
26 # Visual Studio x64 does not support the _mm_empty() intrinsic.
27 PORTS_SRCS-$(HAVE_MMX) += emms_mmx.asm
28 endif
29
30 ifeq ($(VPX_ARCH_X86_64),yes)
31 PORTS_SRCS-$(CONFIG_MSVS) += float_control_word.asm
32 endif
33
34 ifeq ($(VPX_ARCH_X86)$(VPX_ARCH_X86_64),yes)
35 PORTS_SRCS-yes += x86.h
36 PORTS_SRCS-yes += x86_abi_support.asm
37 endif
38
39 PORTS_SRCS-$(VPX_ARCH_ARM) += arm_cpudetect.c
40 PORTS_SRCS-$(VPX_ARCH_ARM) += arm.h
41
42 PORTS_SRCS-$(VPX_ARCH_PPC) += ppc_cpudetect.c
43 PORTS_SRCS-$(VPX_ARCH_PPC) += ppc.h
44
45 PORTS_SRCS-$(VPX_ARCH_MIPS) += mips_cpudetect.c
46 PORTS_SRCS-$(VPX_ARCH_MIPS) += mips.h
47
48 PORTS_SRCS-$(VPX_ARCH_LOONGARCH) += loongarch_cpudetect.c
49 PORTS_SRCS-$(VPX_ARCH_LOONGARCH) += loongarch.h
50
51 ifeq ($(VPX_ARCH_MIPS), yes)
52 PORTS_SRCS-yes += asmdefs_mmi.h
53 endif