Merge "ads2gas.pl: various enhancements to work with flash."
[platform/upstream/libvpx.git] / vp8 / vp8cx.mk
1 ##
2 ##  Copyright (c) 2010 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 include $(SRC_PATH_BARE)/$(VP8_PREFIX)vp8_common.mk
13
14 VP8_CX_EXPORTS += exports_enc
15
16 VP8_CX_SRCS-yes += $(VP8_COMMON_SRCS-yes)
17 VP8_CX_SRCS-no  += $(VP8_COMMON_SRCS-no)
18 VP8_CX_SRCS_REMOVE-yes += $(VP8_COMMON_SRCS_REMOVE-yes)
19 VP8_CX_SRCS_REMOVE-no  += $(VP8_COMMON_SRCS_REMOVE-no)
20
21 ifeq ($(ARCH_ARM),yes)
22   include $(SRC_PATH_BARE)/$(VP8_PREFIX)vp8cx_arm.mk
23 endif
24
25 VP8_CX_SRCS-yes += vp8_cx_iface.c
26
27 # encoder
28 #INCLUDES += algo/vpx_common/vpx_mem/include
29 #INCLUDES += common
30 #INCLUDES += common
31 #INCLUDES += common
32 #INCLUDES += algo/vpx_ref/cpu_id/include
33 #INCLUDES += common
34 #INCLUDES += encoder
35
36 VP8_CX_SRCS-yes += encoder/asm_enc_offsets.c
37 VP8_CX_SRCS-yes += encoder/defaultcoefcounts.h
38 VP8_CX_SRCS-yes += encoder/bitstream.c
39 VP8_CX_SRCS-yes += encoder/boolhuff.c
40 VP8_CX_SRCS-yes += encoder/dct.c
41 VP8_CX_SRCS-yes += encoder/encodeframe.c
42 VP8_CX_SRCS-yes += encoder/encodeframe.h
43 VP8_CX_SRCS-yes += encoder/encodeintra.c
44 VP8_CX_SRCS-yes += encoder/encodemb.c
45 VP8_CX_SRCS-yes += encoder/encodemv.c
46 VP8_CX_SRCS-$(CONFIG_MULTITHREAD) += encoder/ethreading.c
47 VP8_CX_SRCS-yes += encoder/firstpass.c
48 VP8_CX_SRCS-yes += encoder/block.h
49 VP8_CX_SRCS-yes += encoder/boolhuff.h
50 VP8_CX_SRCS-yes += encoder/bitstream.h
51 VP8_CX_SRCS-$(CONFIG_TEMPORAL_DENOISING) += encoder/denoising.h
52 VP8_CX_SRCS-$(CONFIG_TEMPORAL_DENOISING) += encoder/denoising.c
53 VP8_CX_SRCS-yes += encoder/encodeintra.h
54 VP8_CX_SRCS-yes += encoder/encodemb.h
55 VP8_CX_SRCS-yes += encoder/encodemv.h
56 VP8_CX_SRCS-yes += encoder/firstpass.h
57 VP8_CX_SRCS-yes += encoder/lookahead.c
58 VP8_CX_SRCS-yes += encoder/lookahead.h
59 VP8_CX_SRCS-yes += encoder/mcomp.h
60 VP8_CX_SRCS-yes += encoder/modecosts.h
61 VP8_CX_SRCS-yes += encoder/onyx_int.h
62 VP8_CX_SRCS-yes += encoder/pickinter.h
63 VP8_CX_SRCS-yes += encoder/psnr.h
64 VP8_CX_SRCS-yes += encoder/quantize.h
65 VP8_CX_SRCS-yes += encoder/ratectrl.h
66 VP8_CX_SRCS-yes += encoder/rdopt.h
67 VP8_CX_SRCS-yes += encoder/tokenize.h
68 VP8_CX_SRCS-yes += encoder/treewriter.h
69 VP8_CX_SRCS-yes += encoder/mcomp.c
70 VP8_CX_SRCS-yes += encoder/modecosts.c
71 VP8_CX_SRCS-yes += encoder/onyx_if.c
72 VP8_CX_SRCS-yes += encoder/pickinter.c
73 VP8_CX_SRCS-yes += encoder/picklpf.c
74 VP8_CX_SRCS-yes += encoder/psnr.c
75 VP8_CX_SRCS-yes += encoder/quantize.c
76 VP8_CX_SRCS-yes += encoder/ratectrl.c
77 VP8_CX_SRCS-yes += encoder/rdopt.c
78 VP8_CX_SRCS-yes += encoder/segmentation.c
79 VP8_CX_SRCS-yes += encoder/segmentation.h
80 VP8_CX_SRCS-$(CONFIG_INTERNAL_STATS) += encoder/ssim.c
81 VP8_CX_SRCS-yes += encoder/tokenize.c
82 VP8_CX_SRCS-yes += encoder/dct_value_cost.h
83 VP8_CX_SRCS-yes += encoder/dct_value_tokens.h
84 VP8_CX_SRCS-yes += encoder/treewriter.c
85 VP8_CX_SRCS-$(CONFIG_INTERNAL_STATS) += common/postproc.h
86 VP8_CX_SRCS-$(CONFIG_INTERNAL_STATS) += common/postproc.c
87 VP8_CX_SRCS-yes += encoder/temporal_filter.c
88 VP8_CX_SRCS-$(CONFIG_MULTI_RES_ENCODING) += encoder/mr_dissim.c
89 VP8_CX_SRCS-$(CONFIG_MULTI_RES_ENCODING) += encoder/mr_dissim.h
90
91 ifeq ($(CONFIG_REALTIME_ONLY),yes)
92 VP8_CX_SRCS_REMOVE-yes += encoder/firstpass.c
93 VP8_CX_SRCS_REMOVE-yes += encoder/temporal_filter.c
94 endif
95
96 VP8_CX_SRCS-$(HAVE_MMX) += encoder/x86/dct_mmx.asm
97 VP8_CX_SRCS-$(HAVE_MMX) += encoder/x86/subtract_mmx.asm
98 VP8_CX_SRCS-$(HAVE_MMX) += encoder/x86/vp8_enc_stubs_mmx.c
99 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/dct_sse2.asm
100 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/fwalsh_sse2.asm
101 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/quantize_sse2.asm
102
103 ifeq ($(CONFIG_TEMPORAL_DENOISING),yes)
104 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/denoising_sse2.c
105 ifeq ($(HAVE_SSE2),yes)
106 vp8/encoder/x86/denoising_sse2.c.o: CFLAGS += -msse2
107 endif
108 endif
109
110 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/subtract_sse2.asm
111 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/temporal_filter_apply_sse2.asm
112 VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/vp8_enc_stubs_sse2.c
113 VP8_CX_SRCS-$(HAVE_SSSE3) += encoder/x86/quantize_ssse3.asm
114 VP8_CX_SRCS-$(HAVE_SSE4_1) += encoder/x86/quantize_sse4.asm
115 VP8_CX_SRCS-$(ARCH_X86)$(ARCH_X86_64) += encoder/x86/quantize_mmx.asm
116 VP8_CX_SRCS-$(ARCH_X86)$(ARCH_X86_64) += encoder/x86/encodeopt.asm
117 VP8_CX_SRCS-$(ARCH_X86_64) += encoder/x86/ssim_opt.asm
118
119 ifeq ($(CONFIG_REALTIME_ONLY),yes)
120 VP8_CX_SRCS_REMOVE-$(HAVE_SSE2) += encoder/x86/temporal_filter_apply_sse2.asm
121 endif
122
123
124 VP8_CX_SRCS-yes := $(filter-out $(VP8_CX_SRCS_REMOVE-yes),$(VP8_CX_SRCS-yes))